Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #18594: Fix the fallback path in collections.Counter(). | Raymond Hettinger | 2013-10-02 | 1 | -1/+2 | |
| | ||||||
* | Close #19092: ExitStack now reraises exceptions from __exit__ | Nick Coghlan | 2013-10-01 | 1 | -0/+4 | |
| | | | | Report and patch by Hrvoje Nikšić | |||||
* | 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 | 1 | -0/+3 | |
| | | | | | | when necessary. Patch by Oscar Benjamin. | |||||
* | Properly initialize all fields of a SSL object after allocation. | Antoine Pitrou | 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 #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 #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+3 | |
| | | | | bytes until end of data. | |||||
* | fix my absurd spelling | Benjamin Peterson | 2013-09-27 | 1 | -1/+1 | |
| | ||||||
* | 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 #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. | |||||
* | #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 | |
| |\ | ||||||
| | * | #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 | |
| | | | ||||||
| | * | bump to 3.1.5 finalv3.1.5 | Benjamin Peterson | 2012-04-06 | 1 | -1/+1 | |
| | | | ||||||
| | * | bump to 3.1.5rc2 | Benjamin Peterson | 2012-03-15 | 1 | -0/+5 | |
| | | | ||||||
| * | | Add a NEWS entry for b9b521efeba3. | Georg Brandl | 2013-09-14 | 1 | -0/+3 | |
| | | | ||||||
| * | | Add NEWS entry for c18c18774e24. | Georg Brandl | 2013-09-14 | 1 | -0/+11 | |
| | | | ||||||
| * | | Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵ | Antoine Pitrou | 2013-05-18 | 1 | -0/+3 | |
| | | | | | | | | | | | | service using certificates with many wildcards (CVE-2013-2099). | |||||
| * | | Bump to version 3.2.5.v3.2.5 | Georg Brandl | 2013-05-12 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script | Serhiy Storchaka | 2013-09-16 | 1 | -0/+8 | |
| | | | | | | | | | | | | now detect Python source code encoding only in comment lines. | |||||
* | | | Issue #19018: The heapq.merge() function no longer suppresses IndexError | Raymond Hettinger | 2013-09-15 | 1 | -0/+3 | |
| | | | ||||||
* | | | Fix http.server's request handling case on trailing '/'. | Senthil Kumaran | 2013-09-13 | 1 | -0/+4 | |
| | | | | | | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324 | |||||
* | | | Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, | Serhiy Storchaka | 2013-09-13 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov. | |||||
* | | | Issue #18988: The "Tab" key now works when a word is already autocompleted. | Serhiy Storchaka | 2013-09-11 | 1 | -0/+2 | |
| | | | ||||||
* | | | Fix a typo. (closes #18953) | Serhiy Storchaka | 2013-09-08 | 1 | -1/+1 | |
| | | | ||||||
* | | | Close #18952: correctly download test support data | Nick Coghlan | 2013-09-08 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When test.support was converted to a package, it started silently skipping the tests which needed to download support data to run. This change refactors the affected code, and also tidies up test.support.findfile to remove the unused *here* parameter, document the *subdir* parameter and rename the *filename* parameter to avoid shadowing the file builtin and be consistent with the documentation. The unexpected skips were noticed and reported by Zachary Ware | |||||
* | | | Issue #18849: Fixed a Windows-specific tempfile bug where collision with an | Eli Bendersky | 2013-09-06 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina. | |||||
* | | | Issue #18942: sys._debugmallocstats() output was damaged on Windows. | Tim Peters | 2013-09-06 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | _PyDebugAllocatorStats() called PyOS_snprintf() with a %zd format code, but MS doesn't support that code. Interpolated PY_FORMAT_SIZE_T in place of the "z". | |||||
* | | | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in | Serhiy Storchaka | 2013-09-05 | 1 | -0/+3 | |
| | | | | | | | | | | | | the _sre moduel. | |||||
* | | | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 1 | -0/+3 | |
| | | | | | | | | | | | | when input list contains duplicates. | |||||
* | | | Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast | Victor Stinner | 2013-09-04 | 1 | -0/+3 | |
| | | | | | | | | | | | | 64-bit pointer to long (32 bits). | |||||
* | | | Issue #18876: The FileIO.mode attribute now better reflects the actual mode ↵ | Antoine Pitrou | 2013-09-04 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | under which the file was opened. Patch by Erik Bray. | |||||
* | | | Issue #16826: Revert fix while Windows issues are being worked out. | Meador Inge | 2013-09-04 | 1 | -2/+0 | |
| | | | ||||||
* | | | Issue #16826: Don't check for PYTHONCASEOK when using -E. | Meador Inge | 2013-09-03 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | This commit fixes a regression that sneaked into Python 3.3 where importlib was not respecting -E when checking for the PYTHONCASEOK environment variable. | |||||
* | | | Issue #12037: Fix test_email for desktop Windows. | Terry Jan Reedy | 2013-08-31 | 1 | -0/+2 | |
| | | | ||||||
* | | | Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine. | Terry Jan Reedy | 2013-08-31 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | Patch import and initialization in SearchEngine to make testing easier. Improve docstrings, especially to clarify the double role of 'ok' parameters. Original patch by Phil Webster. | |||||
* | | | Issue #18418: After fork(), reinit all threads states, not only active ones. | Charles-François Natali | 2013-08-30 | 1 | -0/+3 | |
| | | | | | | | | | | | | Patch by A. Jesse Jiryu Davis. | |||||
* | | | Fixes issue #15507: test_subprocess's test_send_signal could fail if the test | Gregory P. Smith | 2013-08-29 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | runner were run in an environment where the process inherited an ignore setting for SIGINT. Restore the SIGINT handler to the desired KeyboardInterrupt raising one during that test. | |||||
* | | | Issue #18743: Fix references to non-existant "StringIO" module | Serhiy Storchaka | 2013-08-29 | 1 | -0/+2 | |
| | | | | | | | | | | | | in docstrings and comments. | |||||
* | | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -0/+3 | |
| | | | | | | | | | | | | error messages and comments. | |||||
* | | | Issue #18817: Fix a resource warning in Lib/aifc.py demo. | Serhiy Storchaka | 2013-08-25 | 1 | -0/+2 | |
| | | | ||||||
* | | | #16611: BaseCookie now parses 'secure' and 'httponly' flags. | R David Murray | 2013-08-25 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously it generated them if they were given a value, but completely ignored them if they were present in the string passed in to be parsed. Now if the flag appears on a cookie, the corresponding Morsel key will reference a True value. Other pre-existing behavior is retained in this maintenance patch: if the source contains something like 'secure=foo', morsel['secure'] will return 'foo'. Since such a value doesn't round trip and never did (and would be a surprising occurrence) a subsequent non-bug-fix patch may change this behavior. Inspired by a patch from Julien Phalip, who reviewed this one. | |||||
* | | | Issue #11973: Fix a problem in kevent. The flags and fflags fields are now | Christian Heimes | 2013-08-25 | 1 | -0/+3 | |
| | | | | | | | | | | | | properly handled as unsigned. |