Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | the days of pre-standard C compilers are gone | Benjamin Peterson | 2012-02-26 | 1 | -10/+0 |
| | |||||
* | Issue #14080: fix sporadic test_imp failure. Patch by Stefan Krah. | Antoine Pitrou | 2012-02-26 | 1 | -0/+1 |
| | |||||
* | Issue #14107: test: Fix a deadlock involving the memory watchdog thread. | Charles-François Natali | 2012-02-26 | 1 | -0/+10 |
| | |||||
* | Issue #14123: Explicitly mention that old style % string formatting has ↵ | Gregory P. Smith | 2012-02-26 | 1 | -2/+7 |
|\ | | | | | | | caveats but is not going away any time soon. | ||||
| * | Issue #14123: Explicitly mention that old style % string formatting has caveats | Gregory P. Smith | 2012-02-26 | 1 | -2/+7 |
| | | | | | | | | but is not going away any time soon. | ||||
* | | Close issue #6210: Implement PEP 409 | Nick Coghlan | 2012-02-26 | 15 | -41/+262 |
| | | |||||
* | | #14081: The sep and maxsplit parameter to str.split, bytes.split, and ↵ | Ezio Melotti | 2012-02-26 | 7 | -27/+80 |
| | | | | | | | | bytearray.split may now be passed as keyword arguments. | ||||
* | | Merge 3.2 | Éric Araujo | 2012-02-26 | 4 | -4/+5 |
|\ \ | |/ | |||||
| * | Branch merge | Éric Araujo | 2012-02-26 | 6 | -4/+47 |
| |\ | |||||
| | * | Set archive format explicitly in one distutils test | Éric Araujo | 2012-02-26 | 1 | -1/+2 |
| | | | |||||
| | * | Fix typo in “seperat{or,ion}” | Éric Araujo | 2012-02-26 | 2 | -2/+2 |
| | | | |||||
| | * | Use const markup instead of a misleading string literal | Éric Araujo | 2012-02-26 | 1 | -1/+1 |
| | | | |||||
* | | | Branch merge | Éric Araujo | 2012-02-26 | 1 | -1/+1 |
|\ \ \ | |||||
| * \ \ | #14114: merge with 3.2. | Ezio Melotti | 2012-02-25 | 1 | -1/+1 |
| |\ \ \ | | |/ / | |||||
| | * | | #14114: don't include copybutton.js in the htmlhelp output. | Ezio Melotti | 2012-02-25 | 1 | -1/+1 |
| | | | | |||||
* | | | | Port the #6884 fix to packaging | Éric Araujo | 2012-02-26 | 3 | -44/+118 |
| | | | | |||||
* | | | | Merge from 3.2 | Éric Araujo | 2012-02-25 | 2 | -0/+42 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Add news entry for previous commit | Éric Araujo | 2012-02-25 | 1 | -0/+3 |
| | | | |||||
| * | | Add test file for scripts in Tools (#13447). | Éric Araujo | 2012-02-25 | 1 | -0/+39 |
| |/ | | | | | | | | | | | | | | | When people find bugs in scripts such as reindent.py, msgfmt.py or pygettext.py, we have to try to reproduce the bug manually, apply a fix and test manually again. The alternative is to only read the code and trust that it works. This test file is a way to stop that unsatisfactory state of things and write proper unit tests instead. | ||||
* | | Merge 3.2 | Éric Araujo | 2012-02-25 | 4 | -48/+134 |
|\ \ | |/ | |||||
| * | Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). | Éric Araujo | 2012-02-25 | 4 | -48/+134 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 0a94e2f807c7 and 90b30d62caf2 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help. | ||||
* | | Use assertEqual in test_strptime for better failure messages (cf. issue #14113). | Nadeem Vawda | 2012-02-25 | 1 | -9/+6 |
| | | |||||
* | | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 24 | -1004/+9844 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory. | ||||
* | | Merge with 3.2 | Martin v. Löwis | 2012-02-25 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Package mime.types | Martin v. Löwis | 2012-02-25 | 1 | -0/+1 |
| | | |||||
* | | unused imports, pep8 | Philip Jenvey | 2012-02-25 | 2 | -12/+12 |
| | | |||||
* | | Close #14095: type.__new__() doesn't remove __qualname__ key from the class | Victor Stinner | 2012-02-25 | 2 | -88/+83 |
| | | | | | | | | | | dict anymore if the key is present. Reject also non-string qualified names. And fix reference leaks in type.__new__(). | ||||
* | | Oops, revert unwanted changes | Victor Stinner | 2012-02-24 | 1 | -18/+6 |
| | | |||||
* | | Issue #14107: fix bigmem tests on str.capitalize(), str.swapcase() and | Victor Stinner | 2012-02-24 | 2 | -12/+57 |
| | | | | | | | | | | str.title(). Compute correctly how much memory is required for the test (memuse). | ||||
* | | merge heads | Benjamin Peterson | 2012-02-24 | 1 | -11/+5 |
|\ \ | |||||
| * | | Simplify importib._resolve_name(). | Brett Cannon | 2012-02-24 | 1 | -11/+5 |
| | | | |||||
* | | | merge 3.2 | Benjamin Peterson | 2012-02-24 | 2 | -1/+2 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | merge 3.2.2 release branch for rc | Benjamin Peterson | 2012-02-24 | 10 | -16/+20 |
| |\ | |||||
| | * | Added tag v3.2.3rc1 for changeset 7085403daf43 | Georg Brandl | 2012-02-23 | 1 | -0/+1 |
| | | | |||||
| | * | Update copyright year.v3.2.3rc1 | Georg Brandl | 2012-02-23 | 1 | -1/+1 |
| | | | |||||
| | * | Add 3.2.3 to license. | Georg Brandl | 2012-02-23 | 2 | -0/+3 |
| | | | |||||
| | * | Bump version to 3.2.3rc1. | Georg Brandl | 2012-02-23 | 6 | -15/+15 |
| | | | |||||
* | | | Fix compilation error under Windows (and warnings too). | Antoine Pitrou | 2012-02-24 | 1 | -9/+9 |
| | | | |||||
* | | | #13973: move a couple of imports at module level. Patch by Tshepang ↵ | Ezio Melotti | 2012-02-24 | 1 | -2/+1 |
| | | | | | | | | | | | | Lekhonkhobe. | ||||
* | | | merge | Brett Cannon | 2012-02-24 | 3 | -15/+31 |
|\ \ \ | |||||
| * | | | Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point ↵ | Victor Stinner | 2012-02-24 | 3 | -15/+31 |
| | | | | | | | | | | | | | | | | (e.g. ps_aF) | ||||
* | | | | Turn _return_module() into _handle_fromlist(). | Brett Cannon | 2012-02-24 | 1 | -25/+25 |
|/ / / | |||||
* | | | merge | Brett Cannon | 2012-02-24 | 12 | -151/+188 |
|\ \ \ | |||||
| * | | | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator | Victor Stinner | 2012-02-23 | 12 | -151/+188 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Decode thousands separator and decimal point using PyUnicode_DecodeLocale() (from the locale encoding), instead of decoding them implicitly from latin1 * Remove _PyUnicode_InsertThousandsGroupingLocale(), it was not used * Change _PyUnicode_InsertThousandsGrouping() API to return the maximum character if unicode is NULL * Replace MIN/MAX macros by Py_MIN/Py_MAX * stringlib/undef.h undefines STRINGLIB_IS_UNICODE * stringlib/localeutil.h only supports Unicode | ||||
* | | | | Make the benchmark recording more sensible for importlib.test.benchmark. | Brett Cannon | 2012-02-24 | 1 | -29/+27 |
|/ / / | |||||
* | | | merge | Brett Cannon | 2012-02-23 | 6 | -32/+62 |
|\ \ \ | |||||
| * | | | Issue #13846: Enhance time.monotonic() documentation | Victor Stinner | 2012-02-23 | 1 | -2/+3 |
| | | | | |||||
| * | | | Merged upstream changes. | Vinay Sajip | 2012-02-23 | 0 | -0/+0 |
| |\ \ \ | | |/ / | |||||
| | * | | Merged upstream changes. | Vinay Sajip | 2012-02-23 | 3 | -17/+19 |
| | |\ \ | |||||
| * | \ \ | Merged upstream changes. | Vinay Sajip | 2012-02-23 | 2 | -3/+4 |
| |\ \ \ \ |