Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19132: The pprint module now supports compact mode. | Serhiy Storchaka | 2013-10-02 | 1 | -0/+2 |
| | |||||
* | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -0/+3 |
|\ | | | | | | | frozenset subclasses. | ||||
| * | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -0/+3 |
| | | | | | | | | frozenset subclasses. | ||||
| * | Issue #18594: Fix the fallback path in collections.Counter(). | Raymond Hettinger | 2013-10-02 | 1 | -1/+2 |
| | | |||||
* | | Close #10042: functools.total_ordering now handles NotImplemented | Nick Coghlan | 2013-10-01 | 2 | -0/+5 |
| | | | | | | | | (Patch by Katie Miller) | ||||
* | | Merge #19092 from 3.3 | Nick Coghlan | 2013-10-01 | 2 | -1/+5 |
|\ \ | |/ | |||||
| * | Close #19092: ExitStack now reraises exceptions from __exit__ | Nick Coghlan | 2013-10-01 | 2 | -1/+5 |
| | | | | | | | | Report and patch by Hrvoje Nikšić | ||||
* | | merge | Raymond Hettinger | 2013-10-01 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #18594: Fix the fast path for collections.Counter(). | Raymond Hettinger | 2013-10-01 | 1 | -0/+3 |
| | | | | | | | | The path wasn't being taken due to an over-restrictive type check. | ||||
* | | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵ | Antoine Pitrou | 2013-09-30 | 2 | -0/+4 |
|\ \ | |/ | | | | | | | | | when necessary. Patch by Oscar Benjamin. | ||||
| * | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵ | Antoine Pitrou | 2013-09-30 | 2 | -0/+4 |
| | | | | | | | | | | | | when necessary. Patch by Oscar Benjamin. | ||||
* | | Merge 3.4.0a3 release changes. | Larry Hastings | 2013-09-30 | 1 | -0/+17 |
|\ \ | |||||
| * | | Issue #5845: In site.py, only load readline history from ~/.python_history ↵ | Antoine Pitrou | 2013-09-29 | 1 | -0/+4 |
| | | | | | | | | | | | | if no history has been read already. This avoids double writes to the history file at shutdown. | ||||
| * | | Properly initialize all fields of a SSL object after allocation. | Antoine Pitrou | 2013-09-29 | 1 | -0/+2 |
| |\ \ | | |/ | |||||
| | * | Properly initialize all fields of a SSL object after allocation. | Antoine Pitrou | 2013-09-29 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #19095: SSLSocket.getpeercert() now raises ValueError when the SSL ↵ | Antoine Pitrou | 2013-09-29 | 1 | -0/+3 |
| | | | | | | | | | | | | handshake hasn't been done. | ||||
| * | | Issue #19130: Correct PCbuild/readme.txt, Python 3.3 and 3.4 require VS 2010 | Christian Heimes | 2013-09-29 | 1 | -0/+2 |
| |\ \ | | |/ | |||||
| | * | Issue #19130: Correct PCbuild/readme.txt, Python 3.3 and 3.4 require VS 2010 | Christian Heimes | 2013-09-29 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵ | Antoine Pitrou | 2013-09-28 | 1 | -0/+3 |
| |\ \ | | |/ | | | | | | | is used. | ||||
| | * | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵ | Antoine Pitrou | 2013-09-28 | 1 | -0/+3 |
| | | | | | | | | | | | | is used. | ||||
* | | | Post-version release cleanup. | Larry Hastings | 2013-09-30 | 1 | -0/+12 |
| | | | |||||
* | | | Version bump to 3.4.0a3.v3.4.0a3 | Larry Hastings | 2013-09-28 | 2 | -2/+6 |
|/ / | |||||
* | | Issue #18950: Fix miscellaneous bugs in the sunau module. | Serhiy Storchaka | 2013-09-28 | 1 | -0/+7 |
|\ \ | |/ | | | | | | | | | | | | | Au_read.readframes() now updates current file position and reads correct number of frames from multichannel stream. Au_write.writeframesraw() now correctly updates current file position. Au_read.getnframes() now returns an integer (as in Python 2). Au_read and Au_write now correctly works with file object if start file position is not a zero. | ||||
| * | Issue #18950: Fix miscellaneous bugs in the sunau module. | Serhiy Storchaka | 2013-09-28 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | Au_read.readframes() now updates current file position and reads correct number of frames from multichannel stream. Au_write.writeframesraw() now correctly updates current file position. Au_read.getnframes() now returns an integer (as in Python 2). Au_read and Au_write now correctly works with file object if start file position is not a zero. | ||||
* | | Close #18596: Support address sanity checking in clang/GCC | Nick Coghlan | 2013-09-28 | 2 | -0/+8 |
| | | | | | | | | | | | | This patch appropriately marks known false alarms in the small object allocator when address sanity checking is enabled (patch contributed by Dhiru Kholia). | ||||
* | | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+3 |
|\ \ | |/ | | | | | bytes until end of data. | ||||
| * | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+3 |
| | | | | | | | | bytes until end of data. | ||||
* | | logging: added support for Unix domain sockets to SocketHandler and ↵ | Vinay Sajip | 2013-09-27 | 1 | -0/+3 |
| | | | | | | | | DatagramHandler. | ||||
* | | merge 3.3 | Benjamin Peterson | 2013-09-27 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix my absurd spelling | Benjamin Peterson | 2013-09-27 | 1 | -1/+1 |
| | | |||||
* | | merge 3.3 (#19098) | Benjamin Peterson | 2013-09-27 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | don't scale compiler stack frames if the recursion limit is huge (closes #19098) | Benjamin Peterson | 2013-09-27 | 1 | -0/+3 |
| | | |||||
| * | Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. | Serhiy Storchaka | 2013-09-23 | 1 | -0/+2 |
| | | |||||
* | | Issue #18996: TestCase.assertEqual() now more cleverly shorten differing | Serhiy Storchaka | 2013-09-23 | 1 | -0/+3 |
| | | | | | | | | strings in error report. | ||||
* | | Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation. | Serhiy Storchaka | 2013-09-23 | 1 | -0/+2 |
| | | |||||
* | | Close #18978: Merge changes. | Jason R. Coombs | 2013-09-22 | 1 | -0/+3 |
|\ \ | |||||
| * | | Update NEWS | Jason R. Coombs | 2013-09-22 | 1 | -0/+3 |
| | | | |||||
* | | | Close #18626: add a basic CLI for the inspect module | Nick Coghlan | 2013-09-22 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call | Serhiy Storchaka | 2013-09-20 | 1 | -0/+3 |
|\ \ \ | | |/ | |/| | | | | returned empty string. | ||||
| * | | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call | Serhiy Storchaka | 2013-09-20 | 1 | -0/+3 |
| | | | | | | | | | | | | returned empty string. | ||||
| * | | Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 | Serhiy Storchaka | 2013-09-20 | 1 | -0/+3 |
| | | | | | | | | | | | | binaries. | ||||
* | | | Update internal comments to say _something_ about the "API ID". | Tim Peters | 2013-09-20 | 1 | -1/+3 |
| | | | | | | | | | | | | Best I can tell, the possible values for this aren't documented anywhere. | ||||
* | | | Merge #19037: adjust file times *before* moving maildir files into place. | R David Murray | 2013-09-18 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | #19037: adjust file times *before* moving maildir files into place. | R David Murray | 2013-09-18 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | This avoids race conditions when other programs are monitoring the maildir directory. Patch by janzert. | ||||
* | | | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -0/+6 |
|\ \ \ | |/ / | |||||
| * | | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -0/+6 |
| |\ \ | |||||
| | * \ | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -0/+6 |
| | |\ \ | |||||
| | | * | | #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initial patch by Bruno Piguet. This is implemented as if a useful .netrc file could exist without passwords, which is possible in the general case; but in fact our netrc implementation does not support it. Fixing that issue will be an enhancement. | ||||
| | | * | | Issue #16248: Disable code execution from the user's home directory by ↵ | Antoine Pitrou | 2012-12-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tkinter when the -E flag is passed to Python. Patch by Zachary Ware. | ||||
| | | * | | after 3.1.5 | Benjamin Peterson | 2012-04-11 | 1 | -0/+12 |
| | | | | |