- 25 Şub, 2011 1 kayıt (commit)
-
-
Eli Bendersky yazdı
-
- 24 Şub, 2011 8 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
Antoine Pitrou yazdı
a buffer struct having a NULL data pointer.
-
Alexander Belopolsky yazdı
-
Éric Araujo yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line Add lib2to3.__main__ for easy testing from the console. ........
-
Raymond Hettinger yazdı
-
- 23 Şub, 2011 11 kayıt (commit)
-
-
Brett Cannon yazdı
-
Victor Stinner yazdı
Fix the test for last module changes (r88520).
-
Victor Stinner yazdı
On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses universal newline (replace '\r\n' by '\n').
-
Lars Gustäbel yazdı
regression in _FileInFile which is used in file-like objects returned by TarFile.extractfile(). The inefficient design of the _FileInFile.read() method causes various dramatic side-effects and errors: - The data segment of a file member is read completely into memory every(!) time a small block is accessed. This is not only slow but may cause unexpected MemoryErrors with very large files. - Reading members from compressed tar archives is even slower because of the excessive backwards seeking which is done when the same data segment is read over and over again. - As a backwards seek on a TarFile opened in stream mode is not possible, using extractfile() fails with a StreamError.
-
Victor Stinner yazdı
-
Raymond Hettinger yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
repr(module) uses %R to format module name and filenames, instead of '%s' and '%U', so surrogates from undecodable bytes in a filename (PEP 383) are escaped.
-
Victor Stinner yazdı
And as a consequence, mark also name argument of _PyImport_FindExtensionUnicode() constant too. But I plan to change this argument type to PyObject* later.
-
- 22 Şub, 2011 20 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
The first argument, fqname, was not used.
-
Victor Stinner yazdı
This function was not declared in Python public API (in any .h file) and not documented. Mark it as private to prepare a change of its API.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
by making methods() into a module attribute as it is statically calculated.
-
Antoine Pitrou yazdı
(probably an OS-related issue with mmap)
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
-
Brett Cannon yazdı
-
Giampaolo Rodolà yazdı
-
Sean Reifscheider yazdı
-
Brett Cannon yazdı
The module stored away the 'open' object as found in the global namespace (which fell through to the built-in namespace) since it defined its own 'open'. Problem is that if you reloaded the module it then grabbed the 'open' defined in the previous load, leading to code that infinite recursed. Switched to simply call builtins.open directly.
-
Brett Cannon yazdı
Thanks to Nadeem Vawda for the find and an initial fix.
-
Brett Cannon yazdı
Various tests fail when run under coverage. A primary culprit is refcount tests which fail as the counts are thrown off by the coverage code. A new decorator -- test.support.refcount_test -- is used to decorate tests which test refcounts and to skip them when running under coverage. Other tests simply fail because of changes in the system (e.g., __local__ suddenly appearing). Thanks to Kristian Vlaardingerbroek for helping to diagnose the test failures.
-
Brett Cannon yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module.
-