Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | merge heads | Benjamin Peterson | 2011-09-28 | 16 | -39/+39 | |
|\ \ | ||||||
| * | | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 16 | -39/+39 | |
| | | | ||||||
* | | | this isn't fixed on windows yet... | Benjamin Peterson | 2011-09-28 | 1 | -1/+4 | |
|/ / | ||||||
* | | this test works as expected now | Benjamin Peterson | 2011-09-28 | 1 | -6/+1 | |
| | | ||||||
* | | revert unintended change | Benjamin Peterson | 2011-09-28 | 1 | -1/+4 | |
| | | ||||||
* | | don't check that the first character is XID_Continue | Benjamin Peterson | 2011-09-28 | 2 | -5/+2 | |
| | | | | | | | | Current, XID_Continue is a superset of XID_Start, but that may sometime change. | |||||
* | | test_ctypes: Windows is no more a special case | Victor Stinner | 2011-09-28 | 1 | -6/+3 | |
| | | ||||||
* | | Fix struct sizes. Drop -1, since the resulting string was actually the ↵ | Martin v. Löwis | 2011-09-28 | 1 | -6/+7 | |
| | | | | | | | | | | | | largest one that could be allocated. | |||||
* | | Use compile() instead of eval(). | Martin v. Löwis | 2011-09-28 | 1 | -6/+4 | |
| | | ||||||
* | | Use eval instead of codecs.lookup to trigger UTF-8 generation. | Martin v. Löwis | 2011-09-28 | 1 | -6/+4 | |
| | | ||||||
* | | ACKS for PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -1/+2 | |
| | | ||||||
* | | Update for PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -12/+25 | |
| | | ||||||
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 102 | -5392/+8114 | |
| | | ||||||
* | | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. | Meador Inge | 2011-09-28 | 3 | -0/+5 | |
|\ \ | |/ | | | | | Thanks to Suman Saha for finding the bug and providing a patch. | |||||
| * | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. | Meador Inge | 2011-09-28 | 3 | -0/+5 | |
| | | | | | | | | Thanks to Suman Saha for finding the bug and providing a patch. | |||||
* | | Fix markup. | Georg Brandl | 2011-09-27 | 1 | -2/+2 | |
| | | ||||||
* | | merged | Martin v. Löwis | 2011-09-25 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | Depend setobject.o and dictobject.o on stringlib/eq.h. | Martin v. Löwis | 2011-09-25 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #1621: Fix undefined behaviour from signed overflow in datetime module ↵ | Mark Dickinson | 2011-09-25 | 4 | -16/+14 | |
| | | | | | | | | hashes, array and list iterations, and get_integer (stringlib/string_format.h) | |||||
* | | Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by ↵ | Mark Dickinson | 2011-09-25 | 1 | -1/+2 | |
| | | | | | | | | computing 1.0 / 0.0. | |||||
* | | Issue #1621: Fix undefined behaviour from signed overflow in get_integer ↵ | Mark Dickinson | 2011-09-24 | 1 | -9/+7 | |
| | | | | | | | | (stringlib/formatter.h) | |||||
* | | Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python. | Charles-François Natali | 2011-09-24 | 3 | -140/+19 | |
| | | ||||||
* | | Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, ↵ | Mark Dickinson | 2011-09-24 | 5 | -25/+26 | |
| | | | | | | | | tuple.__hash__, frozenset.__hash__ and set indexing operations. | |||||
* | | Fix typo in comment: _PyHash_Double -> _Py_HashDouble. | Mark Dickinson | 2011-09-24 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #13012: Allow 'keepends' to be passed as a keyword argument in ↵ | Mark Dickinson | 2011-09-24 | 7 | -16/+40 | |
| | | | | | | | | str.splitlines, bytes.splitlines and bytearray.splitlines. | |||||
* | | Merge #12973 itertools fix. | Mark Dickinson | 2011-09-24 | 2 | -4/+6 | |
|\ \ | |/ | ||||||
| * | Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks ↵ | Mark Dickinson | 2011-09-24 | 2 | -4/+6 | |
| | | | | | | | | Stefan Krah. | |||||
* | | merge 3.2 | Benjamin Peterson | 2011-09-23 | 1 | -6/+5 | |
|\ \ | |/ | ||||||
| * | fix compiler compliant about \0 not being an opcode | Benjamin Peterson | 2011-09-23 | 1 | -6/+5 | |
| | | ||||||
* | | disable unused result warnings when possible | Benjamin Peterson | 2011-09-23 | 2 | -0/+65 | |
| | | ||||||
* | | Merge 3.2: Issue #7732: Don't open a directory as a file anymore while | Victor Stinner | 2011-09-23 | 3 | -1/+23 | |
|\ \ | |/ | | | | | | | 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 a | Victor Stinner | 2011-09-23 | 3 | -2/+22 | |
| | | | | | | | | | | 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_xmlrpc | Victor Stinner | 2011-09-22 | 1 | -0/+4 | |
|\ \ | |/ | ||||||
| * | Issue #12931: Add a test with Unicode URI to test_xmlrpc | Victor Stinner | 2011-09-22 | 1 | -0/+4 | |
| | | ||||||
* | | Fix a race condition in test_socket.ThreadableTest: the client is reported | Charles-François Natali | 2011-09-21 | 1 | -1/+1 | |
|\ \ | |/ | | | | | ready before having been set up. | |||||
| * | Fix a race condition in test_socket.ThreadableTest: the client is reported as | Charles-François Natali | 2011-09-21 | 1 | -1/+1 | |
| | | | | | | | | ready before having been set up. | |||||
* | | merge 3.2. Fix closes issue13005 - Remove the mention of 'repeat' method in ↵ | Senthil Kumaran | 2011-09-21 | 1 | -2/+0 | |
|\ \ | |/ | | | | | the operator module documentation. | |||||
| * | Fix closes issue13005 - Remove the mention of 'repeat' method in the ↵ | Senthil Kumaran | 2011-09-21 | 1 | -2/+0 | |
| | | | | | | | | operator module documentation. | |||||
* | | Issue #13002: Fix Visual Studio warning (not enough actual parameters). | Stefan Krah | 2011-09-21 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #12981: test_multiprocessing: catch ImportError when importing | Charles-François Natali | 2011-09-21 | 1 | -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 importing | Charles-François Natali | 2011-09-21 | 1 | -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 Araujo | 2011-09-21 | 4 | -7/+6 | |
|\ \ | ||||||
| * | | Remove two unneeded attributes in packaging | Éric Araujo | 2011-09-21 | 3 | -7/+4 | |
| | | | ||||||
| * | | Squash last tempdir leak in packaging tests. | Éric Araujo | 2011-09-19 | 1 | -0/+2 | |
| | | | | | | | | | | | | Sweet taste of victory! Alexis, you can fix the threads leaks :) | |||||
* | | | Issue #1172711: Update What's New in Python 3.3 document for the array module. | Meador Inge | 2011-09-21 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | The commit fixes 3c56e546dc60, which documented #1172711 as a struct module change; it is an array module change. | |||||
* | | | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 3 | -0/+31 | |
|\ \ \ | | |/ | |/| | | | | was actually received | |||||
| * | | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 3 | -0/+31 | |
| | | | | | | | | | | | | was actually received | |||||
* | | | What's New in Python 3.3: add curses.unget_wch() | Victor Stinner | 2011-09-21 | 1 | -4/+8 | |
| | | | ||||||
* | | | meth.log2 doc: add a link to int.bit_length() | Victor Stinner | 2011-09-21 | 1 | -0/+5 | |
| | | | ||||||
* | | | Issue #1172711: Update What's New in Python 3.3 document for the struct module | Victor Stinner | 2011-09-21 | 1 | -6/+15 | |
| | | |