Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10227: Add an allocation cache for a single slice object. | Antoine Pitrou | 2011-11-18 | 1 | -0/+3 |
| | | | | Patch by Stefan Behnel. | ||||
* | #13358: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
|\ | |||||
| * | #13358: HTMLParser now calls handle_data only once for each CDATA. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
| | | |||||
* | | #4147: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | #4147: minidom's toprettyxml no longer adds whitespace around a text node ↵ | Ezio Melotti | 2011-11-18 | 1 | -0/+4 |
| | | | | | | | | when it is the only child of an element. Initial patch by Dan Kenigsberg. | ||||
* | | Issue #13393: BufferedReader.read1() now asks the full requested size to | Antoine Pitrou | 2011-11-15 | 1 | -0/+3 |
| | | | | | | | | the raw stream instead of limiting itself to the buffer size. | ||||
* | | Issue #13374: The Windows bytes API has been deprecated in the os module. Use | Victor Stinner | 2011-11-15 | 1 | -0/+4 |
| | | | | | | | | | | Unicode filenames instead of bytes filenames to not depend on the ANSI code page anymore and to support any filename. | ||||
* | | Closes #13297: use bytes type to send and receive binary data through XMLRPC. | Florent Xicluna | 2011-11-15 | 1 | -0/+2 |
| | | |||||
* | | Issue #13392: Writing a pyc file should now be atomic under Windows as well. | Antoine Pitrou | 2011-11-15 | 1 | -0/+2 |
| | | |||||
* | | Branch merge | Éric Araujo | 2011-11-15 | 1 | -10/+0 |
|\ \ | |||||
| * | | Remove NEWS entries for packaging test suite fixes. | Éric Araujo | 2011-11-14 | 1 | -10/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I haven’t updated NEWS for every change or fix in packaging, thinking that the only entry we need for 3.3a1 is “Add packaging module to the stdlib”. Other developers have however added entries for these fixes, but I don’t think they are interesting for users. Note that the distutils2 backport has a full changelog. | ||||
* | | | Issue #13333: The UTF-7 decoder now accepts lone surrogates | Antoine Pitrou | 2011-11-15 | 1 | -0/+3 |
|\ \ \ | | |/ | |/| | | | | (the encoder already accepts them). | ||||
| * | | Issue #13333: The UTF-7 decoder now accepts lone surrogates | Antoine Pitrou | 2011-11-15 | 1 | -0/+3 |
| | | | | | | | | | | | | (the encoder already accepts them). | ||||
* | | | Issue #13389: Full garbage collection passes now clear the freelists for | Antoine Pitrou | 2011-11-14 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | list and dict objects. They already cleared other freelists in the interpreter. | ||||
* | | | Issue #6397: Support '/dev/poll' polling objects in select module, under ↵ | Jesus Cea | 2011-11-14 | 1 | -0/+3 |
| |/ |/| | | | | | Solaris & derivatives. | ||||
* | | #1745761, #755670, #13357, #12629, #1200313: merge with 3.2. | Ezio Melotti | 2011-11-14 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in ↵ | Ezio Melotti | 2011-11-14 | 1 | -0/+3 |
| | | | | | | | | HTMLParser. | ||||
* | | Issue #13193: Fix distutils.filelist.FileList and | Antoine Pitrou | 2011-11-12 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | packaging.manifest.Manifest under Windows. The "recursive-include" directive now recognizes both legal path separators. | ||||
| * | Add NEWS entry for #13193 | Antoine Pitrou | 2011-11-12 | 1 | -0/+3 |
| | | |||||
* | | Merge 3.2 | Brian Curtin | 2011-11-11 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Fix #13384. Remove __future__ import in 3.x code. | Brian Curtin | 2011-11-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #13149: Speed up append-only StringIO objects. | Antoine Pitrou | 2011-11-10 | 1 | -0/+2 |
| | | | | | | | | This is very similar to the "lazy strings" idea. | ||||
* | | Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support. | Charles-François Natali | 2011-11-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely | Antoine Pitrou | 2011-11-09 | 1 | -0/+3 |
|\ \ | |/ | | | | | when called with a timeout. Patch by Arnaud Ysmal. | ||||
| * | Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely | Antoine Pitrou | 2011-11-09 | 1 | -0/+3 |
| | | | | | | | | when called with a timeout. Patch by Arnaud Ysmal. | ||||
* | | MERGE: Partial patch for issue #11812: Take care of test_telnetlib.py | Jesus Cea | 2011-11-08 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Partial patch for issue #11812: Take care of test_telnetlib.py | Jesus Cea | 2011-11-08 | 1 | -0/+3 |
| | | |||||
* | | MERGE: Solved a potential deadlock in test_telnetlib.py. Related to issue #11812 | Jesus Cea | 2011-11-08 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Solved a potential deadlock in test_telnetlib.py. Related to issue #11812 | Jesus Cea | 2011-11-08 | 1 | -0/+2 |
| | | |||||
* | | Issue #13237: Forward port from 3.2 of subprocess documentation updates. ↵ | Nick Coghlan | 2011-11-08 | 1 | -0/+3 |
|\ \ | |/ | | | | | Needed quite a few adjustments to account for new features coming in 3.3 | ||||
| * | Issue #13237: Forward port subprocess module updates and explicitly document ↵ | Nick Coghlan | 2011-11-08 | 1 | -0/+3 |
| | | | | | | | | UTF-8 encoding assumption when universal_newlines=True | ||||
* | | News updates for #13327. | Brian Curtin | 2011-11-07 | 1 | -1/+3 |
| | | |||||
* | | Branch merge | Éric Araujo | 2011-11-07 | 1 | -4/+0 |
|\ \ | |||||
| * | | Remove obsolete/duplicate entries | Éric Araujo | 2011-11-06 | 1 | -4/+0 |
| | | | |||||
* | | | Fix #13327. Remove the need for an explicit None as the second argument to | Brian Curtin | 2011-11-06 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | os.utime in order to update to the current time. The second argument is now optional. | ||||
* | | | Revert "Accept None as start and stop parameters for list.index() and ↵ | Petri Lehtinen | 2011-11-06 | 1 | -3/+0 |
|\ \ \ | | |/ | |/| | | | | | | | | | | tuple.index()" Issue #13340. | ||||
| * | | Revert "Accept None as start and stop parameters for list.index() and ↵ | Petri Lehtinen | 2011-11-06 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | tuple.index()" Issue #13340. | ||||
* | | | Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat. | Amaury Forgeot d'Arc | 2011-11-06 | 1 | -0/+3 |
| | | | |||||
* | | | curses.tparm() is expecting a byte string, not curses.tigetstr() | Petri Lehtinen | 2011-11-06 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | Issue #10570 | ||||
| * | | curses.tparm() is expecting a byte string, not curses.tigetstr() | Petri Lehtinen | 2011-11-06 | 1 | -1/+1 |
| | | | | | | | | | | | | Issue #10570 | ||||
* | | | Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode | Antoine Pitrou | 2011-11-05 | 1 | -0/+3 |
|\ \ \ | |/ / | | | | | | | error handler in interactive mode (when calling into PyOS_Readline()). | ||||
| * | | Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode | Antoine Pitrou | 2011-11-05 | 1 | -0/+3 |
| | | | | | | | | | | | | error handler in interactive mode (when calling into PyOS_Readline()). | ||||
* | | | Accept None as start and stop parameters for list.index() and tuple.index(). | Petri Lehtinen | 2011-11-05 | 1 | -0/+3 |
|\ \ \ | |/ / | | | | | | | Closes #13340. | ||||
| * | | Accept None as start and stop parameters for list.index() and tuple.index() | Petri Lehtinen | 2011-11-05 | 1 | -0/+3 |
| | | | | | | | | | | | | Closes #13340. | ||||
* | | | Merge heads | Petri Lehtinen | 2011-11-05 | 1 | -0/+2 |
|\ \ \ | |||||
| * | | | news note about range introspection | Benjamin Peterson | 2011-11-05 | 1 | -0/+2 |
| | |/ | |/| | |||||
* | | | Remove __pycache__ directories correctly on OpenBSD | Petri Lehtinen | 2011-11-05 | 1 | -0/+2 |
|\ \ \ | |/ / |/| / | |/ | Closes #13326. | ||||
| * | Remove __pycache__ directories correctly on OpenBSD | Petri Lehtinen | 2011-11-05 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | The find utility of OpenBSD doesn't support the "-exec cmd {} +" action. Change it to use "-depth -exec cmd {} ;" instead. Also, remove __pycache__ before *.py[co], as most bytecode files are in __pycache__ directories. Only those generated by Python 2 under Doc/tools are not. Closes #13326. | ||||
* | | Issue #3067: Enhance the documentation and docstring of locale.setlocale() | Petri Lehtinen | 2011-11-05 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #3067: Enhance the documentation and docstring of locale.setlocale() | Petri Lehtinen | 2011-11-05 | 1 | -1/+2 |
| | |