- 16 Şub, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 03 Eki, 2012 3 kayıt (commit)
- 10 Eyl, 2012 1 kayıt (commit)
-
-
Christian Heimes yazdı
Fixed two memory leaks in make_filename() in zipimport.c. The allocated buffer wasn't cleaned up in two error cases. CID 486832
-
- 20 Agu, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 25 May, 2012 7 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Eric V. Smith yazdı
-
- 30 Ock, 2012 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
being read from the header vs the values being used by fseek and ftell (Py_ssize_t for those) and how they are computed. Py_ssize_t is used for actual file offsets so that files greater than 2gigs could be supported. Updates the Py_BuildValue format string to match (including several existing wrong 'i's that should have been 'l's).
-
- 18 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 13 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
code, to avoid timestamp collisions (especially on filesystems with a low timestamp resolution) when checking for freshness of the bytecode.
-
- 18 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
_Py_stat() now returns -2 if an exception was raised.
-
- 31 Eki, 2011 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 14 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 11 Eki, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 10 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 28 Eyl, 2011 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Martin v. Löwis yazdı
-
- 26 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
In some cases, fullpath value is used whereas fullpath was not always initialized. Warning found by the Clang Static Analyzer.
-
- 21 May, 2011 2 kayıt (commit)
-
-
Gregory P. Smith yazdı
struct guarantees the loop will always be run once to initialize code.
-
Victor Stinner yazdı
to be able to unload the module.
-
- 19 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
to be able to unload the module.
-
- 16 Mar, 2011 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 15 Mar, 2011 3 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
- Use Unicode for module paths and names, self->archive and self->prefix - Format module names and paths use %R instead of '%U' to escape surrogate characters (PEP 383) - Use PyImport_ExecCodeModuleObject() instead of PyImport_ExecCodeModuleEx() - Use PyImport_AddModuleObject() instead of PyImport_AddModule()
-
- 22 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
zipimport uses ASCII encoding instead of cp497 to decode filenames, at bootstrap, if the codec registry is not ready yet. It is still possible to have non-ASCII filenames using the Unicode flag (UTF-8 encoding) for file entries in the ZIP file.
-
- 18 Eki, 2010 5 kayıt (commit)
-
-
Victor Stinner yazdı
PyErr_Format() and PyUnicode_FromFormat() are able to allocate the right buffer size and to catch memory allocation failures.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
UTF-8 is just fine for module names.
-
Victor Stinner yazdı
I cannot use %U: fullname is a bytes object, not an unicode object. %A format cannot be used, it adds 'b' (bytes) prefix. So create cant_find_module() function to decode the filename and raise the error message.
-
Victor Stinner yazdı
Use PyUnicode_FSConverter to support surrogates in the full name.
-