summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18919: If the close() method of a writer in the sunau or wave moduleSerhiy Storchaka2013-10-122-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 ofSerhiy Storchaka2013-10-121-4/+5
| | | | compressed streams.
* Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-092-3/+23
|
* Issue #18037: Do not escape '\u' and '\U' in raw strings.Serhiy Storchaka2013-10-082-3/+2
|
* Issue 14927: Remove a docstring line that is no longer applicable.Raymond Hettinger2013-10-061-1/+0
|
* Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-11/+17
|
* #19166: use an unused var in a test. Patch by Vajrasky Kok.Ezio Melotti2013-10-051-0/+3
|
* Issue #18594: Make the C code more closely match the pure python code.Raymond Hettinger2013-10-041-0/+24
|
* [issue19152] Revert 832579dbafd6.Eric Snow2013-10-032-7/+0
|
* [issue19152] Add ExtensionFileLoader.get_filename().Eric Snow2013-10-032-0/+7
|
* [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵Eric Snow2013-10-031-2/+2
| | | | reflect 2-tuples.
* Issue #19014: memoryview.cast() is now allowed on zero-length views.Antoine Pitrou2013-10-031-3/+10
|
* Issue #18037: 2to3 now escapes '\u' and '\U' in native strings.Serhiy Storchaka2013-10-032-7/+62
|
* Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-022-27/+80
| | | | frozenset subclasses.
* Close #19092: ExitStack now reraises exceptions from __exit__Nick Coghlan2013-10-012-3/+52
| | | | Report and patch by Hrvoje Nikšić
* Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵Antoine Pitrou2013-09-301-8/+18
| | | | | | when necessary. Patch by Oscar Benjamin.
* Minor code improvement. Review comment by Eric V. SmithSenthil Kumaran2013-09-301-1/+1
|
* remove unused importsBenjamin Peterson2013-09-291-7/+0
|
* Issue #19112: avoid using function defined in method.Richard Oudkerk2013-09-291-8/+9
|
* remove duplicate method (closes #19127)Benjamin Peterson2013-09-291-3/+0
|
* condense two tests with the same name (closes #19114)Benjamin Peterson2013-09-291-13/+12
|
* move helper function into its test method (closes #19112)Benjamin Peterson2013-09-291-7/+6
|
* fix duplicate test names in test_dis (closes #19117)Benjamin Peterson2013-09-291-4/+0
|
* remove duplicate test_mkd (closes #19118)Benjamin Peterson2013-09-291-4/+0
|
* combine two tests to avoid duplicate names (closes #19116)Benjamin Peterson2013-09-291-1/+0
|
* fix duplicate test name (closes #19126)Benjamin Peterson2013-09-291-1/+1
|
* fix test to run and test that smtpd does support ELHO (closes #19125)Benjamin Peterson2013-09-291-3/+3
|
* remove duplicate test from test_import (closes #19122)Benjamin Peterson2013-09-291-11/+0
|
* Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-4/+3
| | | | is used.
* fix duplicate test names (closes #19115)Benjamin Peterson2013-09-281-5/+5
| | | | Patch by Xavier de Gaye.
* Issue #18950: Fix miscellaneous bugs in the sunau module.Serhiy Storchaka2013-09-281-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 emptySerhiy Storchaka2013-09-272-8/+54
| | | | bytes until end of data.
* Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments.Serhiy Storchaka2013-09-231-0/+31
|
* Fix comment in test_gdbNick Coghlan2013-09-221-1/+2
|
* Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0Serhiy Storchaka2013-09-203-3/+5
| | | | binaries.
* Merge #14984: only import pwd on POSIX.R David Murray2013-09-181-1/+3
|\
| * Merge #14984: only import pwd on POSIX.R David Murray2013-09-181-1/+3
| |\
| | * #14984: only import pwd on POSIX.R David Murray2013-09-181-1/+3
| | |
* | | #19037: adjust file times *before* moving maildir files into place.R David Murray2013-09-181-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 Murray2013-09-182-6/+47
|\ \ \ | |/ /
| * | Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-182-6/+47
| |\ \ | | |/
| | * #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-182-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 Brandl2013-09-141-1/+1
| | |
| | * Issue #16248: Disable code execution from the user's home directory by ↵Antoine Pitrou2012-12-091-1/+3
| | | | | | | | | | | | | | | | | | tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
| | * bump to 3.1.5 finalv3.1.5Benjamin Peterson2012-04-062-2/+2
| | |
| | * bump to 3.1.5rc2Benjamin Peterson2012-03-152-2/+2
| | |
| | * version now 3.1.5rc1v3.1.5rc1Benjamin Peterson2012-02-232-2/+2
| | |
| | * Remove setting hash seed to regrtest's random seed and re-execv()ing: this ↵Georg Brandl2012-02-201-5/+0
| | | | | | | | | | | | doesn't preserve Python flags and fails from a temp directory.
| | * Fix dbm_gnu test relying on set order.Georg Brandl2012-02-201-1/+1
| | |
| * | Fix tkinter regression introduced by the security fix in #16248.Georg Brandl2013-09-141-1/+1
| | |