Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Issue #21435: Segfault in gc with cyclic trash | Tim Peters | 2014-05-08 | 3 | -11/+62 | |
| | | | | | | | | | | | | | | | Changed the iteration logic in finalize_garbage() to tolerate objects vanishing from the list as a side effect of executing a finalizer. | |||||
| * | | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a ↵ | Antoine Pitrou | 2014-05-08 | 5 | -4/+45 | |
| | | | | | | | | | | | | | | | | | | flush() on the underlying binary stream. Patch by akira. | |||||
| * | | #21300: fix typo | R David Murray | 2014-05-08 | 2 | -4/+4 | |
| | | | ||||||
| * | | Merging from 3.3: The PyCOND_TIMEDWAIT must use microseconds for the timeout ↵ | Kristján Valur Jónsson | 2014-05-08 | 2 | -7/+7 | |
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | argument in order to have the same resolution as pthreads condition variables. At the same time, it must be large enough to accept 31 bits of milliseconds, which is the maximum timeout value in the windows API. A PY_LONG_LONG of microseconds fullfills both requirements. This closes issue #20737 | |||||
| | * | The PyCOND_TIMEDWAIT must use microseconds for the timeout argument | Kristján Valur Jónsson | 2014-05-08 | 2 | -7/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | in order to have the same resolution as pthreads condition variables. At the same time, it must be large enough to accept 31 bits of milliseconds, which is the maximum timeout value in the windows API. A PY_LONG_LONG of microseconds fullfills both requirements. This closes issue #20737 | |||||
| | * | - Issue #17752: Fix distutils tests when run from the installed location. | doko@ubuntu.com | 2014-05-07 | 4 | -13/+15 | |
| | | | ||||||
| * | | - Issue #17752: Fix distutils tests when run from the installed location. | doko@ubuntu.com | 2014-05-07 | 4 | -14/+25 | |
| | | | ||||||
| * | | #21300: Clean up the docs for the email "policy" arguments. | R David Murray | 2014-05-07 | 3 | -23/+37 | |
| | | | ||||||
| * | | asyncio: Fix the second half of issue #21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 | 2 | -6/+14 | |
| | | | ||||||
| * | | Add prompts to interactive example. | Zachary Ware | 2014-05-06 | 1 | -8/+8 | |
| | | | | | | | | | | | | | | | This makes it match the new example below, and allows Sphinx's "hide the prompts and output" feature to work. | |||||
| * | | Issue #21366: Document the fact that ``return`` in a ``finally`` clause | Zachary Ware | 2014-05-06 | 1 | -0/+14 | |
| | | | | | | | | | | | | overrides a ``return`` in the ``try`` suite. | |||||
| * | | asyncio docs: ProactorEventLoop does not support SSL. | Guido van Rossum | 2014-05-05 | 1 | -1/+1 | |
| | | | ||||||
* | | | Post-release version bump for 3.4.1rc1. Sorry it's late! | Larry Hastings | 2014-05-18 | 2 | -1/+13 | |
| | | | ||||||
* | | | Added tag v3.4.1rc1 for changeset c67a19e11a71 | Larry Hastings | 2014-05-04 | 1 | -0/+1 | |
| | | | ||||||
* | | | Version bump for 3.4.1rc1.v3.4.1rc1 | Larry Hastings | 2014-05-04 | 6 | -86/+86 | |
|/ / | ||||||
* | | Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. | Larry Hastings | 2014-05-04 | 3 | -12/+45 | |
| | | | | | | | | In porting to Argument Clinic, the first two arguments were reversed. | |||||
* | | Issue #18604: Skip the Tk instantiation test on OS X because it can | Ned Deily | 2014-05-04 | 1 | -1/+3 | |
| | | | | | | | | | | cause GUI tests to segfault in Cocoa Tk when run under regrtest -j (multiple threads running subprocesses). | |||||
* | | use with blocks to make sure files are closed | Benjamin Peterson | 2014-05-04 | 1 | -18/+12 | |
| | | ||||||
* | | improve test coverage of filecmp (closes #21357) | Benjamin Peterson | 2014-05-04 | 1 | -5/+75 | |
| | | | | | | | | Patch by Diana Clarke. | |||||
* | | Issue 21375: Fix possible Py_ssizet overflow in heapq. | Raymond Hettinger | 2014-05-03 | 1 | -8/+8 | |
| | | ||||||
* | | Issue #18604: Consolidated checks for GUI availability. | Zachary Ware | 2014-05-02 | 6 | -73/+64 | |
| | | | | | | | | | | | | | | | | | | test_support._is_gui_available is now defined the same way on every platform, and now includes the Windows-specific check that had been in the Windows version of _is_gui_available and the OSX-specific check that was in tkinter.test.support.check_tk_availability. Also, every platform checks whether Tk can be instantiated (if the platform-specific checks passed). | |||||
* | | Update to 1.0.1g | Martin v. Löwis | 2014-05-01 | 5 | -7/+9 | |
| | | ||||||
* | | Document the subprocess Popen.args attribute (issue21353) | Gregory P. Smith | 2014-04-29 | 1 | -0/+6 | |
|\ \ | |/ | ||||||
| * | Document the subprocess Popen.args attribute (issue21353) | Gregory P. Smith | 2014-04-29 | 1 | -0/+6 | |
| | | ||||||
* | | Issue #21374: Fix pickling of DecimalTuple. | Stefan Krah | 2014-04-29 | 2 | -4/+26 | |
| | | ||||||
* | | Closes issue #21316: mark test_devpoll to be meaningfull only for Solaris | Jesus Cea | 2014-04-29 | 1 | -4/+2 | |
| | | ||||||
* | | Issue #17386: Expand Doc/make.bat to be much more similar to Doc/Makefile | Zachary Ware | 2014-04-29 | 2 | -23/+101 | |
| | | ||||||
* | | Issue #17386: Update Doc/README.txt to list all targets | Zachary Ware | 2014-04-29 | 1 | -6/+23 | |
| | | | | | | | | | | supported by Doc/Makefile, as well as a bit of modernization, cleanup, and notes about the difference between Unix and Windows. | |||||
* | | Issue #17386: List the 'htmlview' target in the Doc/Makefile help output. | Zachary Ware | 2014-04-29 | 1 | -0/+1 | |
| | | ||||||
* | | Issue #21321: itertools.islice() now releases the reference to the source ↵ | Antoine Pitrou | 2014-04-29 | 4 | -5/+37 | |
| | | | | | | | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | |||||
* | | Issue #21055: Index (augmented) assignment symbols. | Terry Jan Reedy | 2014-04-29 | 1 | -0/+13 | |
| | | ||||||
* | | Closes 21048: Index 'as' in import and with statements. | Terry Jan Reedy | 2014-04-29 | 2 | -1/+5 | |
| | | ||||||
* | | Issue #21026: Augment site doc based on experiments. Patch by Carol Willing. | Terry Jan Reedy | 2014-04-29 | 2 | -1/+6 | |
| | | ||||||
* | | Issue #9307: document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by ↵ | Antoine Pitrou | 2014-04-28 | 1 | -0/+18 | |
| | | | | | | | | Yury V. Zaytsev. | |||||
* | | Issue #9815: assertRaises now tries to clear references to local variables ↵ | Antoine Pitrou | 2014-04-28 | 3 | -0/+37 | |
| | | | | | | | | in the exception's traceback. | |||||
* | | Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it ↵ | Antoine Pitrou | 2014-04-28 | 3 | -3/+33 | |
| | | | | | | | | raises a TypeError. | |||||
* | | asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. | Guido van Rossum | 2014-04-27 | 4 | -2/+16 | |
| | | ||||||
* | | asyncio: Be careful accessing instance variables in __del__ (closes #21340). | Guido van Rossum | 2014-04-27 | 1 | -1/+3 | |
| | | ||||||
* | | #18243: Remove obsolete cautionary note from email mktime_tz docs. | R David Murray | 2014-04-26 | 1 | -7/+3 | |
| | | ||||||
* | | make operations on closed dumb databases raise a consistent exception ↵ | Benjamin Peterson | 2014-04-26 | 3 | -4/+40 | |
| | | | | | | | | | | | | (closes #19385) Patch by Claudiu Popa. | |||||
* | | shallow defaults to 'True' not '1' (closes #21355) | Benjamin Peterson | 2014-04-26 | 1 | -1/+1 | |
| | | | | | | | | Patch by Diana Clarke. | |||||
* | | Issue #21207: Detect when the os.urandom cached fd has been closed or ↵ | Antoine Pitrou | 2014-04-26 | 3 | -10/+85 | |
| | | | | | | | | replaced, and open it anew. | |||||
* | | #21225: copy docstrings from base classes | Andrew Kuchling | 2014-04-25 | 1 | -4/+4 | |
| | | ||||||
* | | Issue #21346: Fix typo, make message consistent in test_itertools. | Zachary Ware | 2014-04-24 | 1 | -1/+1 | |
| | | | | | | | | Pointed out by Brian Kearns. | |||||
* | | "Escape" a character in the middle of "warning" | Zachary Ware | 2014-04-23 | 1 | -8/+8 | |
| | | | | | | | | This should stop Buildbot from falsely reporting a warning on Windows bots. | |||||
* | | fix the test on windows which has different return codes from killed | Gregory P. Smith | 2014-04-23 | 1 | -5/+10 | |
| | | | | | | | | children. | |||||
* | | Prevent Sphinx error on whatsnew/changelog | Zachary Ware | 2014-04-23 | 1 | -1/+1 | |
| | | ||||||
* | | subprocess's Popen.wait() is now thread safe so that multiple threads | Gregory P. Smith | 2014-04-23 | 3 | -10/+92 | |
| | | | | | | | | | | may be calling wait() or poll() on a Popen instance at the same time without losing the Popen.returncode value. Fixes issue #21291. | |||||
* | | fix off-by-one error (closes #21330) | Benjamin Peterson | 2014-04-23 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #21127: Path objects can now be instantiated from str subclass ↵ | Antoine Pitrou | 2014-04-22 | 4 | -2/+36 | |
| | | | | | | | | | | | | instances (such as numpy.str_). Thanks to Antony Lee for the report and preliminary patch. |