Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | 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. | |||||
* | | Issue #21138: Change default reformat paragraph width to PEP 8's 72. | Terry Jan Reedy | 2014-04-22 | 2 | -2/+4 | |
| | | ||||||
* | | Issue 21284: Idle: make test_formatparagraph pass even when a user changes the | Terry Jan Reedy | 2014-04-22 | 3 | -10/+15 | |
| | | | | | | | | reformat width in the configuration menu. | |||||
* | | NEWS entry for #15002 | Senthil Kumaran | 2014-04-20 | 1 | -0/+4 | |
| | | ||||||
* | | urllib.response object to use _TemporaryFileWrapper (and _TemporaryFileCloser) | Senthil Kumaran | 2014-04-20 | 2 | -66/+60 | |
| | | | | | | | | | | | | facility. Provides a better way to handle file descriptor close. Address issue #15002 . Patch contributed by Christian Theune. | |||||
* | | #12220: improve minidom error when URI contains spaces. | R David Murray | 2014-04-20 | 4 | -1/+11 | |
| | | | | | | | | Fix by 'amathew', test by Marek Stepniowski. | |||||
* | | Issue #11571: Ensure that the turtle window becomes the topmost window | Ned Deily | 2014-04-20 | 2 | -0/+10 | |
| | | | | | | | | when launched on OS X. (Original patch by Ronald Oussoren) | |||||
* | | Issue #21311: Avoid exception in _osx_support with non-standard compiler | Ned Deily | 2014-04-19 | 3 | -1/+5 | |
| | | | | | | | | configurations. Patch by John Szakmeister. | |||||
* | | #9364: Improve the text printed by help(pydoc) and help(help). | R David Murray | 2014-04-19 | 2 | -4/+9 | |
| | | ||||||
* | | Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing. | Eric Snow | 2014-04-19 | 3 | -1/+22 | |
| | | ||||||
* | | Issue #21232: Replace .splitlines arg '1' with 'keepends=True'. | Terry Jan Reedy | 2014-04-18 | 1 | -6/+6 | |
| | | ||||||
* | | Issue #21289: Fix documentation building on Windows using Doc/make.bat. | Zachary Ware | 2014-04-18 | 3 | -4/+5 | |
| | | | | | | | | | | | | Also fixes a long-standing typo in Doc/README.txt. Initial patch by Dave Sawyer. | |||||
* | | NEWS for latest asyncio commit. | Guido van Rossum | 2014-04-18 | 1 | -0/+3 | |
| | | ||||||
* | | asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). | Guido van Rossum | 2014-04-15 | 2 | -0/+59 | |
| | | ||||||
* | | Fix a typo in the docstring of nb_index. | Zachary Ware | 2014-04-18 | 1 | -1/+1 | |
| | | ||||||
* | | Fix a typo in the signature for object.__ge__ | Zachary Ware | 2014-04-18 | 1 | -1/+1 | |
| | | ||||||
* | | correct len signature in docstring (closes #21294) | Benjamin Peterson | 2014-04-18 | 1 | -1/+1 | |
| | | ||||||
* | | fix ref count annotations on sphinx >= 1.2.1 (closes #21286) | Benjamin Peterson | 2014-04-17 | 1 | -1/+4 | |
| | | ||||||
* | | - Issue #21285: Refactor and fix curses configure check to always search | doko@ubuntu.com | 2014-04-17 | 3 | -38/+53 | |
| | | | | | | | | in a ncursesw directory. | |||||
* | | Fixes for KFreeBSD and the Hurd: | doko@ubuntu.com | 2014-04-17 | 4 | -2/+15 | |
| | | | | | | | | | | | | | | | | - Issue #21274: Define PATH_MAX for GNU/Hurd in Python/pythonrun.c. - Issue #21276: posixmodule: Don't define USE_XATTRS on KFreeBSD and the Hurd. - Issue #21275: Fix a socket test on KFreeBSD. | |||||
* | | - Issue #15234: For BerkelyDB and Sqlite, only add the found library and | doko@ubuntu.com | 2014-04-17 | 2 | -2/+17 | |
| | | | | | | | | | | include directories if they aren't already being searched. This avoids an explicit runtime library dependency. | |||||
* | | Clarify BROWSER envar behavior in webbrowser.py. Noted by David Turner. ↵ | Senthil Kumaran | 2014-04-17 | 1 | -6/+6 | |
| | | | | | | | | Closes #21248 | |||||
* | | Correct the URL in the http.client example. Noted by Evens Fortuné. Closes ↵ | Senthil Kumaran | 2014-04-17 | 1 | -1/+1 | |
| | | | | | | | | #21229 | |||||
* | | #18628: clarify index entry for source file encoding declaration. | R David Murray | 2014-04-17 | 1 | -1/+1 | |
| | | | | | | | | Patch by Sam Lucidi. | |||||
* | | remove superfluous and useless line | Benjamin Peterson | 2014-04-16 | 1 | -1/+0 | |
| | |