- 10 Eyl, 2011 6 kayıt (commit)
-
-
Éric Araujo yazdı
This is copied from the namesake distutils command; there is no automated test, so buildbots won’t call for my head this time, but it should be okay as Python 3 users have tested the distutils command.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
In dry-run mode, packaging commands should log the same info as in real operation and should collect the same files in self.outputs, so that users can run a command in verbose and dry-run mode to see exactly what operations will be done in the real run.
-
Éric Araujo yazdı
Original patch by Filip Gruszczyński.
-
Éric Araujo yazdı
New tests were added in test_metadata and old tests inherited from distutils were still in test_dist, so I moved them into test_metadata (except for one which was more at home in test_run) and merged duplicates. I also added some skips to lure contributors <wink>, optimized the Metadata.update method a trifle, and added notes about a number of issues. A note: The tests in test_dist used to dump the Metadata objects to a file in the METADATA format and look for strings in its contents; I updated them to use the mapping API of Metadata instead. For some fields with special writing rules, I have added tests to ensure my conversion did not lose anything.
-
Éric Araujo yazdı
-
- 09 Eyl, 2011 5 kayıt (commit)
-
-
Éric Araujo yazdı
-
Éric Araujo yazdı
I have tests to add in this file and it’s always nice to start from a clean base.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
Also fix some markup and typos.
-
Larry Hastings yazdı
atime and mtime with nanosecond precision on modern POSIX platforms.
-
- 07 Eyl, 2011 4 kayıt (commit)
-
-
Victor Stinner yazdı
configure.in: Set _POSIX_C_SOURCE to 200809L, instead of 200112L, to activate features from IEEE Stds 1003.1-2008.
-
Victor Stinner yazdı
configure: Set _XOPEN_SOURCE to 700, instead of 600, to get POSIX 2008 functions on OpenBSD (e.g. fdopendir).
-
Nadeem Vawda yazdı
PyLong_AsDouble() and PyLong_AsUnsignedLongLong() now raise TypeError (rather than SystemError) when passed a non-integer argument, matching the behavior of all the other PyLong_As*() functions.
-
Victor Stinner yazdı
instead of void*
-
- 06 Eyl, 2011 12 kayıt (commit)
-
-
Charles-François Natali yazdı
<sched.h> is available (most notably on OpenBSD when built without pthread): add an explicit configure check.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
Skip the test if the function is missing. Use U+0061 (a) instead of U+00E9 (é) because U+00E9 raises a _curses.error('unget_wch() returned ERR') on some buildbots. It's maybe because of the locale encoding.
-
Brett Cannon yazdı
-
Victor Stinner yazdı
- Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character - Fix spelling of the null character
-
Victor Stinner yazdı
Fix also spelling of the null character.
-
- 05 Eyl, 2011 13 kayıt (commit)
-
-
Victor Stinner yazdı
Push a character so the next get_wch() will return it.
-
Victor Stinner yazdı
instead of the locale encoding
-
Victor Stinner yazdı
instead of the locale encoding.
-
Victor Stinner yazdı
instead of the locale encoding.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
sys.platform is now always 'linux2' on Linux (even on Linux 3)
-
Senthil Kumaran yazdı
merge from 3.2. Fix closes Issue11155 - Correct the multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez.
-
Senthil Kumaran yazdı
Fix closes Issue11155 - Correct the multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
-
Éric Araujo yazdı
-
Lars Gustäbel yazdı
-
Lars Gustäbel yazdı
tarfile unnecessarily checked the existence of numerical user and group ids on extraction. If one of them did not exist the respective id of the current user (i.e. root) was used for the file and ownership information was lost. (Patch by Sebastien Luttringer)
-