Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an | Antoine Pitrou | 2010-09-05 | 1 | -0/+4 |
| | | | | | unsupported operation is attempted (for example, writing to a file open only for reading). | ||||
* | Post-release update. | Georg Brandl | 2010-09-05 | 1 | -0/+12 |
| | |||||
* | Fix amk’s tracker name | Éric Araujo | 2010-09-05 | 1 | -2/+2 |
| | |||||
* | Fix reST in NEWS, and remove NEWS.help (all committers should now know reST ↵ | Georg Brandl | 2010-09-05 | 2 | -87/+12 |
| | | | | anyway, and for those who do not, there is Documenting Python.) | ||||
* | Rewrap. | Georg Brandl | 2010-09-05 | 1 | -159/+152 |
| | |||||
* | Bump to 3.2a2. | Georg Brandl | 2010-09-05 | 2 | -2/+2 |
| | |||||
* | Clean-up functools.total_ordering(). | Raymond Hettinger | 2010-09-05 | 1 | -1/+1 |
| | |||||
* | Typo | Raymond Hettinger | 2010-09-05 | 1 | -2/+2 |
| | |||||
* | Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file | Antoine Pitrou | 2010-09-04 | 1 | -0/+3 |
| | | | | descriptor is provided. Patch by Pascal Chambon. | ||||
* | Issue #7451: Improve decoding performance of JSON objects, and reduce | Antoine Pitrou | 2010-09-04 | 1 | -0/+4 |
| | | | | | the memory consumption of said decoded objects when they use the same strings as keys. | ||||
* | Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced | Antoine Pitrou | 2010-09-04 | 2 | -0/+5 |
| | | | | | by the new (and simpler) DUP_TOP_TWO. Performance isn't changed, but our bytecode is a bit simplified. Patch by Demur Rumed. | ||||
* | _warnings exposed two variables with the name 'default_action' and | Brett Cannon | 2010-09-04 | 1 | -0/+3 |
| | | | | | | | | | | | 'once_registry'. This is bad as the warnings module had variables named 'defaultaction' and 'onceregistry' which are what people should be looking at (technically those variables shouldn't be mucked with as they are undocumented, but we all know better than to believe that isn't happening). So the variables from _warnings have been renamed to come off as private and to avoid confusion over what variable should be used. Closes issue #9766. Thanks to Antoine Pitrou for the discovery. | ||||
* | Fix Björn's name in ACKS. | Antoine Pitrou | 2010-09-04 | 1 | -1/+1 |
| | |||||
* | Issue #1100562: Fix deep-copying of objects derived from the list and dict ↵ | Antoine Pitrou | 2010-09-04 | 1 | -0/+3 |
| | | | | | | types. Patch by Michele Orrù and Björn Lindqvist. | ||||
* | Issue #7736: Release the GIL around calls to opendir() and closedir() | Antoine Pitrou | 2010-09-04 | 1 | -0/+3 |
| | | | | in the posix module. Patch by Marcin Bachry. | ||||
* | Issue #1303434: Include PDBs in release. | Martin v. Löwis | 2010-09-04 | 1 | -0/+2 |
| | | | | Patch by James Lee and Daniel Stutzbach. | ||||
* | add consistent support for the vars and default arguments on all | Fred Drake | 2010-09-04 | 1 | -0/+3 |
| | | | | | configuration parser classes (http://bugs.python.org/issue9421) | ||||
* | NEWS for PEP 3149, and clean up a few other entries. | Barry Warsaw | 2010-09-03 | 1 | -7/+9 |
| | |||||
* | Fix NEWS entry. | Antoine Pitrou | 2010-09-03 | 1 | -2/+3 |
| | |||||
* | Fix Issue9753: socket.dup() does not always work right on Windows | Daniel Stutzbach | 2010-09-03 | 1 | -0/+3 |
| | |||||
* | fix output from RawConfigParser.write and ConfigParser.write for None | Fred Drake | 2010-09-03 | 1 | -0/+3 |
| | | | | | | values (http://bugs.python.org/issue7005) (merged r84443 from the release27-mmaint branch, with changes to reflect changes in Python 3) | ||||
* | Credit where credit is due | Daniel Stutzbach | 2010-09-02 | 1 | -1/+1 |
| | |||||
* | Issue #9212: Added the missing isdisjoint method to the dict_keys and | Daniel Stutzbach | 2010-09-02 | 1 | -0/+3 |
| | | | | | dict_items views. The method is required by the collections.Set ABC, which the views register as supporting. | ||||
* | Issue #9737: Fix a crash when trying to delete a slice or an item from | Antoine Pitrou | 2010-09-01 | 1 | -0/+3 |
| | | | | a memoryview object. | ||||
* | Issue #8990: array.fromstring() and array.tostring() get renamed to | Antoine Pitrou | 2010-09-01 | 1 | -0/+5 |
| | | | | | | frombytes() and tobytes(), respectively, to avoid confusion. Furthermore, array.frombytes(), array.extend() as well as the array.array() constructor now accept bytearray objects. Patch by Thomas Jollans. | ||||
* | Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() | Antoine Pitrou | 2010-09-01 | 2 | -2/+4 |
| | | | | | are now removed, since their effect was inexistent in 3.x (the default encoding is hardcoded to utf-8 and cannot be changed). | ||||
* | Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API | Antoine Pitrou | 2010-09-01 | 2 | -0/+4 |
| | | | | properly. Patch by Stefan Behnel. | ||||
* | Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become | Antoine Pitrou | 2010-09-01 | 1 | -0/+3 |
| | | | | _Py_add_one_to_C() and _Py_add_one_to_F(), respectively. | ||||
* | Issue #808164: Fixed socket.close to avoid references to globals, to | Daniel Stutzbach | 2010-08-31 | 1 | -0/+3 |
| | | | | avoid issues when socket.close is called from a __del__ method. | ||||
* | Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers ↵ | Daniel Stutzbach | 2010-08-31 | 1 | -0/+4 |
| | | | | other than MSC | ||||
* | Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by | Antoine Pitrou | 2010-08-30 | 2 | -0/+4 |
| | | | | Sébastien Sablé. | ||||
* | handle names starting with non-ascii characters correctly #9712 | Benjamin Peterson | 2010-08-30 | 1 | -0/+2 |
| | |||||
* | update Misc/NEWS to include issue #9706 changes | Giampaolo Rodolà | 2010-08-29 | 1 | -0/+3 |
| | |||||
* | Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private | Antoine Pitrou | 2010-08-28 | 1 | -0/+4 |
| | | | | | to the socket module, and fix the width of socket descriptors to be correctly detected under 64-bit Windows. | ||||
* | Issue #1868: Eliminate subtle timing issues in thread-local objects by | Antoine Pitrou | 2010-08-28 | 1 | -0/+3 |
| | | | | getting rid of the cached copy of thread-local attribute dictionary. | ||||
* | Issue #1512791: In setframerate method of Wave_write, round non-integral | Mark Dickinson | 2010-08-28 | 2 | -0/+4 |
| | | | | inputs to the nearest integer. Thanks Neil Tallim for the patch. | ||||
* | Fix Issue8797 - Reset the basic auth retry count when response code is not 401. | Senthil Kumaran | 2010-08-26 | 1 | -0/+3 |
| | |||||
* | basicsize and itemsize are Py_ssize_t #9688 | Benjamin Peterson | 2010-08-25 | 1 | -0/+2 |
| | |||||
* | Issue 8781: Define SIZEOF_WCHAR_T on Windows | Daniel Stutzbach | 2010-08-25 | 1 | -0/+3 |
| | |||||
* | Issue #1027206: getnameinfo is now restricted to numeric addresses as input. | Martin v. Löwis | 2010-08-25 | 1 | -1/+2 |
| | |||||
* | #1194222: make parsedate always return RFC2822 four character years. | R. David Murray | 2010-08-25 | 2 | -0/+4 |
| | | | | | | | | Two character years are now converted to four character years using the Posix standard rule (<68 == 2000, >=68==1900). This makes the parsed date RFC2822 compliant even if the input is not. Patch and test by Jeffrey Finkelstein. | ||||
* | further clarify | Benjamin Peterson | 2010-08-24 | 1 | -2/+2 |
| | |||||
* | Issue 8750: Fixed MutableSet's methods to correctly handle reflexive ↵ | Daniel Stutzbach | 2010-08-24 | 1 | -0/+3 |
| | | | | operations, namely x -= x and x ^= x | ||||
* | only catch AttributeError in hasattr() #9666 | Benjamin Peterson | 2010-08-24 | 2 | -0/+4 |
| | |||||
* | fix issue 9129: adds proper error handling on accept() when smtpd accepts ↵ | Giampaolo Rodolà | 2010-08-23 | 1 | -0/+3 |
| | | | | new incoming connections. | ||||
* | fix issue 9601: ftplib now provides a workaround for invalid response code ↵ | Giampaolo Rodolà | 2010-08-23 | 1 | -1/+7 |
| | | | | returned on MKD and PWD by non-compliant FTPserver implementations such as ISS shipped with Windows server 2003 | ||||
* | fix issue 658749: correctly interprets asyncore's windows errors on connect() | Giampaolo Rodolà | 2010-08-23 | 1 | -0/+3 |
| | |||||
* | Issue #9501: Fixed logging regressions in cleanup code. | Vinay Sajip | 2010-08-23 | 1 | -0/+2 |
| | |||||
* | news note for last change | Benjamin Peterson | 2010-08-23 | 1 | -0/+2 |
| | |||||
* | One of the joys of having test_multiprocessing occasionally execute after | Brett Cannon | 2010-08-22 | 1 | -0/+3 |
| | | | | | | | | | | | test_importlib is that it discovers special little race conditions. For instance, it turns out that importlib would throw an exception if two different Python processes both tried to create the __pycache__ directory as one process would succeed, causing the other process to fail as it didn't expect to get any "help". So now importlib simply stays calm and just accepts someone else did the work of creating the __pycache__ directory for it, moving on with life. Closes issue #9572. |