Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10492: bdb.Bdb.run() only traces the execution of the code | Victor Stinner | 2011-01-06 | 1 | -0/+3 |
| | | | | And not the compilation (if the input is a string). | ||||
* | Fix mistake in NEWS | Antoine Pitrou | 2011-01-05 | 1 | -1/+1 |
| | |||||
* | Issue #7995: When calling accept() on a socket with a timeout, the returned | Antoine Pitrou | 2011-01-05 | 1 | -0/+3 |
| | | | | socket is now always non-blocking, regardless of the operating system. | ||||
* | Issue #5485: Add tests for the UseForeignDTD method of expat parser objects. | Antoine Pitrou | 2011-01-05 | 1 | -0/+3 |
| | | | | Patch by Jean-Paul Calderone and Sandro Tosi. | ||||
* | Issue #10756: add the author, Andreas Stührk | Victor Stinner | 2011-01-05 | 2 | -1/+3 |
| | |||||
* | Issue #10756: atexit normalizes the exception before displaying it. | Victor Stinner | 2011-01-05 | 1 | -0/+2 |
| | |||||
* | #10790: make append work when output codec is different from input codec | R. David Murray | 2011-01-05 | 1 | -0/+3 |
| | | | | | There's still a bug here (the encode call shouldn't use the 'errors' paramter), but I'll fix that later. | ||||
* | Issue #8013: time.asctime and time.ctime no longer call system asctime | Alexander Belopolsky | 2011-01-04 | 1 | -0/+6 |
| | | | | | | | and ctime functions. The year range for time.asctime is now 1900 through maxint. The range for time.ctime is the same as for time.localtime. The string produced by these functions is longer than 24 characters when year is greater than 9999. | ||||
* | Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows | Victor Stinner | 2011-01-04 | 1 | -2/+2 |
| | |||||
* | Issue #10819: SocketIO.name property returns -1 when its closed, instead of | Victor Stinner | 2011-01-04 | 1 | -0/+3 |
| | | | | raising a ValueError, to fix repr(). | ||||
* | Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if | Victor Stinner | 2011-01-04 | 1 | -0/+4 |
| | | | | | the input buffer length doesn't fit into an unsigned int (length bigger than 2^32-1 bytes). | ||||
* | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-01-04 | 1 | -0/+4 |
| | | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1). | ||||
* | Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the | Victor Stinner | 2011-01-04 | 1 | -0/+3 |
| | | | | length to 2^31-1 on Windows. | ||||
* | Issue #10333: Remove ancient GC API, which has been deprecated since | Antoine Pitrou | 2011-01-04 | 1 | -0/+6 |
| | | | | Python 2.2. | ||||
* | news for 6643 | Gregory P. Smith | 2011-01-03 | 1 | -0/+3 |
| | |||||
* | Issue #6293: Have regrtest.py echo back sys.flags. This is done by default | Antoine Pitrou | 2011-01-03 | 1 | -0/+7 |
| | | | | | in whole runs and enabled selectively using `--header` when running an explicit list of tests. Original patch by Collin Winter. | ||||
* | Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep in | Antoine Pitrou | 2011-01-03 | 2 | -0/+4 |
| | | | | the configure script but use $GREP instead. Patch by Fabian Groffen. | ||||
* | Issue #10806, issue #9905: Fix subprocess pipes when some of the standard | Antoine Pitrou | 2011-01-03 | 1 | -0/+4 |
| | | | | | file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall. | ||||
* | Enable unittest.TestCase to be instantiated without providing a method name. | Michael Foord | 2011-01-03 | 1 | -0/+3 |
| | | | | Changed unittestgui to show number of discovered tests in the status bar. | ||||
* | Issue 10502: addition of unittestgui to Tools/ | Michael Foord | 2011-01-03 | 1 | -0/+4 |
| | |||||
* | test_tkinter: use a context manager to close directly the pipe | Victor Stinner | 2011-01-03 | 1 | -0/+1 |
| | | | | Patch written by Nadeem Vawda | ||||
* | #8278: In the Windows implementation of stat() and utime(), | Amaury Forgeot d'Arc | 2011-01-03 | 1 | -0/+3 |
| | | | | | use time_t instead of int. This gives support for dates after 2038, at least when compiled with VS2003 or later, where time_t is 64bit. | ||||
* | Issue #10798: Reject supporting concurrent.futures if the system has | Martin v. Löwis | 2011-01-03 | 1 | -0/+3 |
| | | | | too few POSIX semaphores. | ||||
* | Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from | Victor Stinner | 2011-01-02 | 1 | -0/+3 |
| | | | | the codec aliases. They are still accessible via codecs.lookup(). | ||||
* | Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD | Antoine Pitrou | 2011-01-02 | 2 | -0/+4 |
| | | | | and DragonFly BSD. Patch by Nicolas Joly. | ||||
* | #10801: In zipfile, support different encodings for the header and the ↵ | Georg Brandl | 2011-01-01 | 1 | -0/+3 |
| | | | | filenames. Patch by MvL, test by Eli Bendersky. | ||||
* | Fix issue references. | Georg Brandl | 2011-01-01 | 1 | -9/+9 |
| | |||||
* | Issue 6285: add NEWS entry for 3.2. | Terry Reedy | 2011-01-01 | 1 | -0/+3 |
| | |||||
* | Typo. | Raymond Hettinger | 2010-12-31 | 1 | -1/+1 |
| | |||||
* | Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). | Raymond Hettinger | 2010-12-31 | 1 | -0/+3 |
| | |||||
* | Remove mentions of the Demo directory. | Georg Brandl | 2010-12-30 | 1 | -0/+7 |
| | |||||
* | Issue 10786: unittest.TextTestRunner default stream no longer bound at ↵ | Michael Foord | 2010-12-30 | 1 | -0/+4 |
| | | | | import time | ||||
* | Minor clarification | Terry Reedy | 2010-12-29 | 1 | -2/+2 |
| | |||||
* | Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. | Senthil Kumaran | 2010-12-29 | 1 | -0/+5 |
| | |||||
* | Issue #10783: rephrase the changelog (new try) | Victor Stinner | 2010-12-29 | 1 | -1/+1 |
| | |||||
* | Issue #10783: rephrase the changelog (NEWS, What's new) | Victor Stinner | 2010-12-28 | 1 | -2/+1 |
| | |||||
* | Issue 10738: Fix webbrowser.Opera.raise_opts value. | Terry Reedy | 2010-12-28 | 1 | -0/+2 |
| | |||||
* | #9824: encode , and ; in cookie values so that browsers don't split on them | R. David Murray | 2010-12-28 | 1 | -0/+3 |
| | | | | | | | | There is a small chance of backward incompatibility here, but only for non-SimpleCookie applications reading SimpleCookie generated cookies. Even then, any such ap is likely to be handling escaped values already, and it would take a fairly perverse implementation of unescaping to fail to unescape these newly escaped chars, so the risk seems minimal. | ||||
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
| | | | | Eric in #1772833. | ||||
* | Fix #9333. The symlink function is always available now, raising OSError | Brian Curtin | 2010-12-28 | 1 | -0/+4 |
| | | | | when the user doesn't hold the symbolic link privilege rather than hiding it. | ||||
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 | Victor Stinner | 2010-12-28 | 1 | -0/+3 |
| | | | | | | | * Replace "bytes" by "bytes object" in struct error messages * Document the API change in What's new in Python 3.2 * Fix test_wave * Remove also ugly implicit conversions in test_struct | ||||
* | Remove history; adapt a bit more to reST, since this will once be part of ↵ | Georg Brandl | 2010-12-28 | 1 | -160/+153 |
| | | | | the dev guide. | ||||
* | Add news entry and clarify another. | Georg Brandl | 2010-12-28 | 1 | -2/+4 |
| | |||||
* | #10768: fix ScrolledText widget construction, and make the example work from ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
| | | | | the interactive shell. | ||||
* | #10777: fix iteration over dict keys while mutating the dict. | Georg Brandl | 2010-12-28 | 1 | -0/+3 |
| | |||||
* | #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+6 |
| | | | | altinstall; create symlinks for make install. | ||||
* | Issue #10780: PyErr_SetFromWindowsErrWithFilename() and | Victor Stinner | 2010-12-28 | 1 | -0/+4 |
| | | | | | PyErr_SetExcFromWindowsErrWithFilename() decode the filename from the filesystem encoding instead of UTF-8. | ||||
* | Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem | Victor Stinner | 2010-12-27 | 1 | -0/+3 |
| | | | | encoding instead of UTF-8. | ||||
* | Issue #10626: test_logging now preserves logger disabled states. | Vinay Sajip | 2010-12-27 | 1 | -2/+4 |
| | |||||
* | Issue #10774: test_logging now removes temp files created during tests. | Vinay Sajip | 2010-12-27 | 1 | -0/+2 |
| |