summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10333: Remove ancient GC API, which has been deprecated sinceAntoine Pitrou2011-01-041-0/+6
| | | | Python 2.2.
* news for 6643Gregory P. Smith2011-01-031-0/+3
|
* Issue #6293: Have regrtest.py echo back sys.flags. This is done by defaultAntoine Pitrou2011-01-031-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 inAntoine Pitrou2011-01-032-0/+4
| | | | the configure script but use $GREP instead. Patch by Fabian Groffen.
* Issue #10806, issue #9905: Fix subprocess pipes when some of the standardAntoine Pitrou2011-01-031-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 Foord2011-01-031-0/+3
| | | | Changed unittestgui to show number of discovered tests in the status bar.
* Issue 10502: addition of unittestgui to Tools/Michael Foord2011-01-031-0/+4
|
* test_tkinter: use a context manager to close directly the pipeVictor Stinner2011-01-031-0/+1
| | | | Patch written by Nadeem Vawda
* #8278: In the Windows implementation of stat() and utime(),Amaury Forgeot d'Arc2011-01-031-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 hasMartin v. Löwis2011-01-031-0/+3
| | | | too few POSIX semaphores.
* Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs fromVictor Stinner2011-01-021-0/+3
| | | | the codec aliases. They are still accessible via codecs.lookup().
* Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSDAntoine Pitrou2011-01-022-0/+4
| | | | and DragonFly BSD. Patch by Nicolas Joly.
* #10801: In zipfile, support different encodings for the header and the ↵Georg Brandl2011-01-011-0/+3
| | | | filenames. Patch by MvL, test by Eli Bendersky.
* Fix issue references.Georg Brandl2011-01-011-9/+9
|
* Issue 6285: add NEWS entry for 3.2.Terry Reedy2011-01-011-0/+3
|
* Typo.Raymond Hettinger2010-12-311-1/+1
|
* Fix OrderedDict.setdefault() to work for subclasses that define __missing__().Raymond Hettinger2010-12-311-0/+3
|
* Remove mentions of the Demo directory.Georg Brandl2010-12-301-0/+7
|
* Issue 10786: unittest.TextTestRunner default stream no longer bound at ↵Michael Foord2010-12-301-0/+4
| | | | import time
* Minor clarificationTerry Reedy2010-12-291-2/+2
|
* Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar.Senthil Kumaran2010-12-291-0/+5
|
* Issue #10783: rephrase the changelog (new try)Victor Stinner2010-12-291-1/+1
|
* Issue #10783: rephrase the changelog (NEWS, What's new)Victor Stinner2010-12-281-2/+1
|
* Issue 10738: Fix webbrowser.Opera.raise_opts value.Terry Reedy2010-12-281-0/+2
|
* #9824: encode , and ; in cookie values so that browsers don't split on themR. David Murray2010-12-281-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 Brandl2010-12-281-0/+2
| | | | Eric in #1772833.
* Fix #9333. The symlink function is always available now, raising OSErrorBrian Curtin2010-12-281-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-8Victor Stinner2010-12-281-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 Brandl2010-12-281-160/+153
| | | | the dev guide.
* Add news entry and clarify another.Georg Brandl2010-12-281-2/+4
|
* #10768: fix ScrolledText widget construction, and make the example work from ↵Georg Brandl2010-12-281-0/+2
| | | | the interactive shell.
* #10777: fix iteration over dict keys while mutating the dict.Georg Brandl2010-12-281-0/+3
|
* #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make ↵Georg Brandl2010-12-281-0/+6
| | | | altinstall; create symlinks for make install.
* Issue #10780: PyErr_SetFromWindowsErrWithFilename() andVictor Stinner2010-12-281-0/+4
| | | | | PyErr_SetExcFromWindowsErrWithFilename() decode the filename from the filesystem encoding instead of UTF-8.
* Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystemVictor Stinner2010-12-271-0/+3
| | | | encoding instead of UTF-8.
* Issue #10626: test_logging now preserves logger disabled states.Vinay Sajip2010-12-271-2/+4
|
* Issue #10774: test_logging now removes temp files created during tests.Vinay Sajip2010-12-271-0/+2
|
* #5258/#10642: print fn, line, traceback and continue when .pth file is brokenR. David Murray2010-12-261-0/+4
| | | | | | | | | | If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file.
* revert 87478Terry Reedy2010-12-261-1/+1
|
* Issue #10763: subprocess.communicate() closes stdout and stderr if both areVictor Stinner2010-12-251-0/+3
| | | | | | pipes (bug specific to Windows). Improve also the unit test: write a portable unit test.
* #1693546: don't add quotes around RFC 2231 encoded values.R. David Murray2010-12-241-0/+3
| | | | | | | | The RFC is bit hard to understand on this point, but the examples clearly show that parameter values that are encoded according to its charset/language rules don't have surrounding quotes, and the ABNF does not allow for quotes. So when we produce such encoded values, we no longer add quotes.
* Match current tracker name, though I do not know if still active.Terry Reedy2010-12-241-1/+1
|
* Add news entry for 87471.Raymond Hettinger2010-12-241-0/+2
|
* #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tzR. David Murray2010-12-231-0/+3
| | | | Original patch by Thomas Herve.
* #4871: check that zipfile password is bytes, and give useful error message.R. David Murray2010-12-211-0/+3
| | | | | | | | | Previously passing a string in as the password would fail either with an assertion error or a TypeError with a confusing error message. Note that a string can't be accepted since zipfile has no way to guess what encoding should be used to turn it into bytes. Patch by Victor Stinner.
* Issue #10750: The `raw` attribute of buffered IO objects is now read-only.Antoine Pitrou2010-12-211-0/+2
|
* Deprecate assertDictContainsSubset()Raymond Hettinger2010-12-211-0/+12
|
* Issue3243 - Support iterable bodies in httplib. Patch contributions by ↵Senthil Kumaran2010-12-191-0/+3
| | | | Xuanji Li and Chris AtLee.
* Bump to 3.2b2.Georg Brandl2010-12-192-2/+2
|
* #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by ↵Georg Brandl2010-12-192-0/+4
| | | | Kevin Walzer and Ned Deily.