summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-281-0/+1
|
* merge headsBenjamin Peterson2011-09-2816-39/+39
|\
| * #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-2816-39/+39
| |
* | this isn't fixed on windows yet...Benjamin Peterson2011-09-281-1/+4
|/
* this test works as expected nowBenjamin Peterson2011-09-281-6/+1
|
* revert unintended changeBenjamin Peterson2011-09-281-1/+4
|
* don't check that the first character is XID_ContinueBenjamin Peterson2011-09-281-4/+1
| | | | Current, XID_Continue is a superset of XID_Start, but that may sometime change.
* test_ctypes: Windows is no more a special caseVictor Stinner2011-09-281-6/+3
|
* Fix struct sizes. Drop -1, since the resulting string was actually the ↵Martin v. Löwis2011-09-281-6/+7
| | | | | | largest one that could be allocated.
* Use compile() instead of eval().Martin v. Löwis2011-09-281-6/+4
|
* Use eval instead of codecs.lookup to trigger UTF-8 generation.Martin v. Löwis2011-09-281-6/+4
|
* Implement PEP 393.Martin v. Löwis2011-09-288-36/+79
|
* Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python.Charles-François Natali2011-09-241-3/+18
|
* Issue #13012: Allow 'keepends' to be passed as a keyword argument in ↵Mark Dickinson2011-09-243-6/+20
| | | | str.splitlines, bytes.splitlines and bytearray.splitlines.
* Merge 3.2: Issue #7732: Don't open a directory as a file anymore whileVictor Stinner2011-09-231-0/+9
|\ | | | | | | | | importing a module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
| * Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-0/+9
| | | | | | | | | | module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
* | Merge 3.2: Issue #12931: Add a test with Unicode URI to test_xmlrpcVictor Stinner2011-09-221-0/+4
|\ \ | |/
| * Issue #12931: Add a test with Unicode URI to test_xmlrpcVictor Stinner2011-09-221-0/+4
| |
* | Fix a race condition in test_socket.ThreadableTest: the client is reportedCharles-François Natali2011-09-211-1/+1
|\ \ | |/ | | | | ready before having been set up.
| * Fix a race condition in test_socket.ThreadableTest: the client is reported asCharles-François Natali2011-09-211-1/+1
| | | | | | | | ready before having been set up.
* | Issue #12981: test_multiprocessing: catch ImportError when importingCharles-François Natali2011-09-211-0/+1
|\ \ | |/ | | | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets).
| * Issue #12981: test_multiprocessing: catch ImportError when importingCharles-François Natali2011-09-211-2/+13
| | | | | | | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets).
* | Branch mergeÉric Araujo2011-09-213-6/+5
|\ \
| * | Remove two unneeded attributes in packagingÉric Araujo2011-09-212-6/+3
| | |
| * | Squash last tempdir leak in packaging tests.Éric Araujo2011-09-191-0/+2
| | | | | | | | | | | | Sweet taste of victory! Alexis, you can fix the threads leaks :)
* | | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+17
|\ \ \ | | |/ | |/| | | | was actually received
| * | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+17
| | | | | | | | | | | | was actually received
* | | Issue #1172711: Add 'long long' support to the array module.Meador Inge2011-09-211-0/+21
| | | | | | | | | | | | Initial patch by Oren Tirosh and Hirokazu Yamamoto.
* | | Merge 3.2: test_multiprocessing removes temporary filesVictor Stinner2011-09-201-0/+2
|\ \ \ | |/ /
| * | test_multiprocessing removes temporary filesVictor Stinner2011-09-201-0/+2
| | |
* | | Merge 3.2: test_httplib removes temporary filesVictor Stinner2011-09-201-0/+2
|\ \ \ | |/ /
| * | test_httplib removes temporary filesVictor Stinner2011-09-201-0/+2
| | |
* | | Issue #12981: test_multiprocessing: catch ImportError when importingCharles-François Natali2011-09-201-2/+12
| | | | | | | | | | | | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets).
* | | Issue #12996: multiprocessing.connection: transmit the header in network byteCharles-François Natali2011-09-201-2/+2
| |/ |/| | | | | order (endpoints machines can have different endianness).
* | Close #13007: whichdb should recognize gdbm 1.9 magic numbersJesus Cea2011-09-191-1/+1
|\ \ | |/
| * Close #13007: whichdb should recognize gdbm 1.9 magic numbersJesus Cea2011-09-191-1/+1
| |
* | Avoid matching '' or 'yn' when asking for 'y' or 'n' in interactive codeÉric Araujo2011-09-192-2/+2
| |
* | Branch mergeÉric Araujo2011-09-1944-283/+215
|\ \
| * | Make regrtest look at internal dicts in sysconfig.Éric Araujo2011-09-191-1/+24
| | | | | | | | | | | | | | | This reveals problems in the packaging test suite, which I’ll look into after the regrtest checks are made more usable (see #12314).
| * | Final bag of small changes coming from distutils2.Éric Araujo2011-09-199-29/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | - minor cleanup in Metadata - trigger creation of the sysconfig._CONFIG_VARS dict - home_page is used over home-page: it’s not a compound word, it’s an escaped space Distutils2 is now synchronized with Packaging.
| * | A few style changes originally done in the distutils2 repoÉric Araujo2011-09-184-17/+16
| | |
| * | Replace cmp function with key functionÉric Araujo2011-09-181-15/+2
| | |
| * | Fix typo and wordingÉric Araujo2011-09-181-1/+1
| | |
| * | Branch mergeÉric Araujo2011-09-1816-96/+47
| |\ \
| | * | Use a local name (it was intended to be used but overlooked).Éric Araujo2011-09-171-2/+2
| | | | | | | | | | | | | | | | This was caught in the distutils2 repo by pyflakes.
| | * | Packaging cleanup: remove conditionals for < 2.6 support.Éric Araujo2011-09-1716-95/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PEP 370 features and sys.dont_write_bytecode are always available in 3.3; the distutils2 backport still has the conditionals. I also renamed an internal misnamed method and fixed a few things (“packaging2” name, stray print, unused import, fd leak).
| * | | Make a number of small changes to ease the backport to distutils2Éric Araujo2011-09-1819-125/+104
| | | |
| * | | Fix fallback base class when tests run without threadingÉric Araujo2011-09-181-1/+1
| | | |
* | | | Close issue 12958 by flagging expected failures in test_socket on Mac OS XNick Coghlan2011-09-192-0/+25
|/ / /
* | | Issue #12765: Fix packaging.test.test_database failures on OS X dueNed Deily2011-09-151-0/+1
|/ / | | | | | | | | to unwarranted assumption about absolute paths: on OS X /var is a symlink to /private/var. (Also true for /etc and /tmp).