index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
zipimport.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-29770: remove outdated PYO related info (GH-590)
Xiang Zhang
2017-03-11
1
-3/+3
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-6/+3
*
Issue #28152: Fix -Wunreachable-code warning on clang
Victor Stinner
2016-12-05
1
-5/+5
*
Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising
Serhiy Storchaka
2016-10-21
1
-4/+2
*
Issue #28131: Fix a regression in zipimport's compile_source()
Berker Peksag
2016-09-14
1
-1/+1
*
Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patc...
Steve Dower
2016-09-10
1
-10/+4
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-1/+1
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
*
Issue #19883: Fixed possible integer overflows in zipimport.
Serhiy Storchaka
2016-01-28
1
-153/+214
*
merge 3.4
Benjamin Peterson
2016-01-22
1
-0/+4
|
\
|
*
reject negative data_size
Benjamin Peterson
2016-01-22
1
-0/+4
*
|
merge 3.4 (#26171)
Benjamin Peterson
2016-01-21
1
-0/+5
|
\
\
|
|
/
|
*
prevent buffer overflow in get_data (closes #26171)
Benjamin Peterson
2016-01-21
1
-0/+5
*
|
merge 3.4
Benjamin Peterson
2016-01-21
1
-0/+1
|
\
\
|
|
/
|
*
fix refleak in error condition
Benjamin Peterson
2016-01-21
1
-0/+1
*
|
Issue #17633: Improve support for namespace packages with zipimport.
Brett Cannon
2016-01-15
1
-16/+32
*
|
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-2/+1
*
|
Issue #23731: Implement PEP 488.
Brett Cannon
2015-04-13
1
-15/+2
*
|
Issue #23696: Chain ZipImportError to the OSError
Victor Stinner
2015-03-20
1
-1/+5
*
|
Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file()
Victor Stinner
2015-03-18
1
-0/+3
*
|
Issue #23694: Enhance _Py_fopen(), it now raises an exception on error
Victor Stinner
2015-03-18
1
-6/+2
|
/
*
Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer
Serhiy Storchaka
2015-02-16
1
-1/+1
*
merge backout for #20621
Benjamin Peterson
2014-02-16
1
-236/+48
*
merge 3.3
Benjamin Peterson
2014-01-09
1
-3/+1
|
\
|
*
fix zipimport ref leak
Benjamin Peterson
2014-01-09
1
-3/+1
*
|
Fixes issue #19081: When a zipimport .zip file in sys.path being imported from
Gregory P. Smith
2014-01-08
1
-48/+238
|
\
\
|
|
/
|
*
Fixes Issue #19081: When a zipimport .zip file in sys.path being imported from
Gregory P. Smith
2014-01-08
1
-47/+238
*
|
Issue #19515: Remove duplicated identifiers in zipimport.c
Victor Stinner
2013-11-12
1
-6/+4
*
|
Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() f...
Victor Stinner
2013-10-29
1
-2/+7
*
|
Issue #19428: zipimport now handles errors when reading truncated or invalid
Victor Stinner
2013-10-29
1
-3/+13
*
|
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
Victor Stinner
2013-08-27
1
-2/+2
*
|
Grammatical mistake in a comment
Brett Cannon
2013-06-21
1
-1/+1
*
|
Issue #8745: Small speed up zipimport on Windows. Patch by Catalin Iacob.
Serhiy Storchaka
2013-02-16
1
-9/+18
|
/
*
MERGE: Closes #15897: zipimport.c doesn't check return value of fseek()
Jesus Cea
2012-10-03
1
-7/+36
|
\
|
*
Closes #15897: zipimport.c doesn't check return value of fseek()
Jesus Cea
2012-10-03
1
-7/+36
*
|
Fixed two memory leaks in make_filename() in zipimport.c. The allocated buffe...
Christian Heimes
2012-09-10
1
-2/+6
*
|
Closes #15737: Fix potential NULL dereference in zipimport.c.
Stefan Krah
2012-08-20
1
-2/+2
*
|
capitialize enum members
Benjamin Peterson
2012-05-25
1
-17/+17
*
|
use PyDict_Contains
Benjamin Peterson
2012-05-25
1
-3/+3
*
|
return NULL on error
Benjamin Peterson
2012-05-25
1
-2/+3
*
|
actually return the result
Benjamin Peterson
2012-05-25
1
-1/+1
*
|
simplify and rewrite the zipimport part of 702009f3c0b1 a bit
Benjamin Peterson
2012-05-25
1
-51/+41
*
|
plug ref leak
Benjamin Peterson
2012-05-25
1
-0/+1
*
|
issue 14660: Implement PEP 420, namespace packages.
Eric V. Smith
2012-05-25
1
-8/+140
*
|
Fix zipimport.c's read_directory() to use appropriate types for the values
Gregory P. Smith
2012-01-30
1
-4/+5
|
\
\
|
|
/
|
*
Fix zip_import.c's read_directory() to use appropriate types for the values
Gregory P. Smith
2012-01-30
1
-4/+5
*
|
Issue #13645: pyc files now contain the size of the corresponding source
Antoine Pitrou
2012-01-13
1
-1/+3
*
|
(Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception
Victor Stinner
2011-12-18
1
-3/+5
|
\
\
|
|
/
|
*
Handle correctly _Py_fopen() error: don't replace the exception
Victor Stinner
2011-12-18
1
-3/+5
[next]