Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18919: Unified and extended tests for audio modules: aifc, sunau and | Serhiy Storchaka | 2013-10-13 | 18 | -226/+557 |
| | | | | wave. | ||||
* | Closes #17375: port new threading docstrings from 2.7. | Georg Brandl | 2013-10-13 | 1 | -39/+375 |
| | |||||
* | Make test_terminate() succeed or fail quickly. | Richard Oudkerk | 2013-10-12 | 1 | -2/+14 |
| | | | | This does not fix #19227, but should stop the Gentoo buildbot from hanging. | ||||
* | Issue #18919: If the close() method of a writer in the sunau or wave module | Serhiy Storchaka | 2013-10-12 | 2 | -13/+18 |
| | | | | | failed, second invocation of close() and destructor no more raise an exception. | ||||
* | Issue #19131: The aifc module now correctly reads and writes sampwidth of | Serhiy Storchaka | 2013-10-12 | 1 | -4/+5 |
| | | | | compressed streams. | ||||
* | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 2 | -3/+23 |
| | |||||
* | Issue #18037: Do not escape '\u' and '\U' in raw strings. | Serhiy Storchaka | 2013-10-08 | 2 | -3/+2 |
| | |||||
* | Issue 14927: Remove a docstring line that is no longer applicable. | Raymond Hettinger | 2013-10-06 | 1 | -1/+0 |
| | |||||
* | Minor clean-up of function parameters in random(). | Raymond Hettinger | 2013-10-06 | 1 | -11/+17 |
| | |||||
* | #19166: use an unused var in a test. Patch by Vajrasky Kok. | Ezio Melotti | 2013-10-05 | 1 | -0/+3 |
| | |||||
* | Issue #18594: Make the C code more closely match the pure python code. | Raymond Hettinger | 2013-10-04 | 1 | -0/+24 |
| | |||||
* | [issue19152] Revert 832579dbafd6. | Eric Snow | 2013-10-03 | 2 | -7/+0 |
| | |||||
* | [issue19152] Add ExtensionFileLoader.get_filename(). | Eric Snow | 2013-10-03 | 2 | -0/+7 |
| | |||||
* | [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵ | Eric Snow | 2013-10-03 | 1 | -2/+2 |
| | | | | reflect 2-tuples. | ||||
* | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -3/+10 |
| | |||||
* | Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. | Serhiy Storchaka | 2013-10-03 | 2 | -7/+62 |
| | |||||
* | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 2 | -27/+80 |
| | | | | frozenset subclasses. | ||||
* | Close #19092: ExitStack now reraises exceptions from __exit__ | Nick Coghlan | 2013-10-01 | 2 | -3/+52 |
| | | | | Report and patch by Hrvoje Nikšić | ||||
* | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵ | Antoine Pitrou | 2013-09-30 | 1 | -8/+18 |
| | | | | | | when necessary. Patch by Oscar Benjamin. | ||||
* | Minor code improvement. Review comment by Eric V. Smith | Senthil Kumaran | 2013-09-30 | 1 | -1/+1 |
| | |||||
* | remove unused imports | Benjamin Peterson | 2013-09-29 | 1 | -7/+0 |
| | |||||
* | Issue #19112: avoid using function defined in method. | Richard Oudkerk | 2013-09-29 | 1 | -8/+9 |
| | |||||
* | remove duplicate method (closes #19127) | Benjamin Peterson | 2013-09-29 | 1 | -3/+0 |
| | |||||
* | condense two tests with the same name (closes #19114) | Benjamin Peterson | 2013-09-29 | 1 | -13/+12 |
| | |||||
* | move helper function into its test method (closes #19112) | Benjamin Peterson | 2013-09-29 | 1 | -7/+6 |
| | |||||
* | fix duplicate test names in test_dis (closes #19117) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | |||||
* | remove duplicate test_mkd (closes #19118) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | |||||
* | combine two tests to avoid duplicate names (closes #19116) | Benjamin Peterson | 2013-09-29 | 1 | -1/+0 |
| | |||||
* | fix duplicate test name (closes #19126) | Benjamin Peterson | 2013-09-29 | 1 | -1/+1 |
| | |||||
* | fix test to run and test that smtpd does support ELHO (closes #19125) | Benjamin Peterson | 2013-09-29 | 1 | -3/+3 |
| | |||||
* | remove duplicate test from test_import (closes #19122) | Benjamin Peterson | 2013-09-29 | 1 | -11/+0 |
| | |||||
* | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵ | Antoine Pitrou | 2013-09-28 | 1 | -4/+3 |
| | | | | is used. | ||||
* | fix duplicate test names (closes #19115) | Benjamin Peterson | 2013-09-28 | 1 | -5/+5 |
| | | | | Patch by Xavier de Gaye. | ||||
* | Issue #18950: Fix miscellaneous bugs in the sunau module. | Serhiy Storchaka | 2013-09-28 | 1 | -6/+21 |
| | | | | | | | | 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 #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 2 | -8/+54 |
| | | | | bytes until end of data. | ||||
* | Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. | Serhiy Storchaka | 2013-09-23 | 1 | -0/+31 |
| | |||||
* | Fix comment in test_gdb | Nick Coghlan | 2013-09-22 | 1 | -1/+2 |
| | |||||
* | Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 | Serhiy Storchaka | 2013-09-20 | 3 | -3/+5 |
| | | | | binaries. | ||||
* | Merge #14984: only import pwd on POSIX. | R David Murray | 2013-09-18 | 1 | -1/+3 |
|\ | |||||
| * | Merge #14984: only import pwd on POSIX. | R David Murray | 2013-09-18 | 1 | -1/+3 |
| |\ | |||||
| | * | #14984: only import pwd on POSIX. | R David Murray | 2013-09-18 | 1 | -1/+3 |
| | | | |||||
* | | | #19037: adjust file times *before* moving maildir files into place. | R David Murray | 2013-09-18 | 1 | -5/+13 |
| | | | | | | | | | | | | | | | 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 | 2 | -6/+47 |
|\ \ \ | |/ / | |||||
| * | | Merge #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 2 | -6/+47 |
| |\ \ | | |/ | |||||
| | * | #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 2 | -6/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| | * | Fix tkinter regression introduced by the security fix in #16248. | Georg Brandl | 2013-09-14 | 1 | -1/+1 |
| | | | |||||
| | * | Issue #16248: Disable code execution from the user's home directory by ↵ | Antoine Pitrou | 2012-12-09 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | tkinter when the -E flag is passed to Python. Patch by Zachary Ware. | ||||
| | * | bump to 3.1.5 finalv3.1.5 | Benjamin Peterson | 2012-04-06 | 2 | -2/+2 |
| | | | |||||
| | * | bump to 3.1.5rc2 | Benjamin Peterson | 2012-03-15 | 2 | -2/+2 |
| | | | |||||
| | * | version now 3.1.5rc1v3.1.5rc1 | Benjamin Peterson | 2012-02-23 | 2 | -2/+2 |
| | | |