summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10184: Touch directories only once when extracting a tarfile.Martin v. Löwis2010-11-011-0/+2
|
* Issue #10199: Moved Demo/turtle under Lib/Alexander Belopolsky2010-11-011-0/+3
|
* Issue #10265: Close file objects explicitly in sunau. Patch by Brian Brazil.Antoine Pitrou2010-10-311-0/+2
|
* Issue 10110: Let Queue.put recognize a full queue when the maxsize ↵Raymond Hettinger2010-10-311-0/+3
| | | | parameter has been reduced.
* add --enable-loadable-sqlite-extensions #10268Benjamin Peterson2010-10-311-0/+2
|
* Issue #10266: uu.decode didn't close in_file explicitly when it was givenAntoine Pitrou2010-10-311-0/+3
| | | | as a filename. Patch by Brian Brazil.
* Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.Antoine Pitrou2010-10-311-0/+2
|
* Updated NEWS about logging.basicConfig().Vinay Sajip2010-10-311-0/+2
|
* Issue #5729: json.dumps to support using '\t' as an indent stringRaymond Hettinger2010-10-311-0/+3
|
* if FileIO.__init__ fails, close fdBenjamin Peterson2010-10-301-0/+2
|
* Issue #10253: FileIO leaks a file descriptor when trying to open a fileAntoine Pitrou2010-10-301-0/+3
| | | | for append that isn't seekable. Patch by Brian Brazil.
* Fix test_mailbox by supporting context manager protocol for get_file() returns.Georg Brandl2010-10-301-0/+3
|
* Issue #10246: uu.encode didn't close file objects explicitly when filenamesAntoine Pitrou2010-10-301-0/+3
| | | | were given to it. Patch by Brian Brazil.
* #10198: fix duplicate header when writeframes() is called with an empty string.Georg Brandl2010-10-301-0/+3
|
* Issue 10221: Improve error message for dict.pop().Raymond Hettinger2010-10-301-0/+3
|
* Silence ResourceWarnings in modulefinder by using file context managers.Brett Cannon2010-10-301-0/+2
|
* Add some missing entries related to the various ResourceWarning fixes I have ↵Brett Cannon2010-10-301-0/+6
| | | | committed.
* Issue #10233: Close file objects in a timely manner in the tarfile moduleAntoine Pitrou2010-10-291-0/+3
| | | | and its test suite.
* Issue #9377: Use Unicode API for gethostname on Windows.Martin v. Löwis2010-10-291-0/+2
|
* Fix issue 10214 by removing the out of date python-mode.el and replacing it ↵Barry Warsaw2010-10-292-3916/+32
| | | | with a README. Will backport to 3.1 and 2.7.
* Issue #10093: ResourceWarnings are now issued when files and sockets areAntoine Pitrou2010-10-291-0/+4
| | | | | deallocated without explicit closing. These warnings are silenced by default, except in pydebug mode.
* Add read support for all missing variants of the GNU sparseLars Gustäbel2010-10-291-0/+3
| | | | | | | | extensions. Thus, in addition to GNUTYPE_SPARSE headers, sparse information in pax headers created by GNU tar can now be decoded. All three formats 0.0, 0.1 and 1.0 are supported. On filesystems that support this, holes in files are now restored whenever a sparse member is extracted.
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-0/+3
| | | | data (including local variables caught in the stack trace) alive infinitely.
* #10218: return timeout status from Condition.wait, mirroring other ↵Georg Brandl2010-10-281-0/+2
| | | | primitives' behavior.
* #7351: add more consistent exception name alias.Georg Brandl2010-10-281-0/+3
|
* Issue #8852: Allow the socket module to build on OpenSolaris.Antoine Pitrou2010-10-271-0/+2
|
* Add David.Georg Brandl2010-10-271-0/+3
|
* Issue #5027: The standard `xml` namespace is now understood byAntoine Pitrou2010-10-272-0/+5
| | | | | xml.sax.saxutils.XMLGenerator as being bound to http://www.w3.org/XML/1998/namespace. Patch by Troy J. Farrell.
* #5975: add unix_dialect to csv module.Georg Brandl2010-10-271-1/+3
|
* #7761: fix telnetlib.interact failures on Windows.R. David Murray2010-10-261-0/+2
|
* logging: Added style option to Formatter to allow %, {} or himBHformatting.Vinay Sajip2010-10-251-0/+2
|
* Issue #10143: Update "os.pathconf" valuesJesus Cea2010-10-251-1/+3
|
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ↵Georg Brandl2010-10-241-1/+1
| | | | | | | | is silent by default, except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr.
* Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer)Nick Coghlan2010-10-241-0/+3
|
* remove broken code accounting an offset the size of the line #10186Benjamin Peterson2010-10-241-0/+3
|
* #1349106: add linesep argument to generator.flatten and header.encode.R. David Murray2010-10-231-0/+3
|
* #6518: enable context manager protocol for ossaudiodev types.Georg Brandl2010-10-231-0/+2
|
* Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape errorVictor Stinner2010-10-231-0/+5
| | | | | | handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source code directory name contains a non-ASCII character and the locale encoding is ASCII.
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-2/+0
| | | | test_multiprocessing's misbehaviour.
* Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2010-10-221-0/+2
|
* Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket`Antoine Pitrou2010-10-221-0/+5
| | | | | | in order to support the TLS SNI extension. `HTTPSConnection` and `urlopen()` also use this argument, so that HTTPS virtual hosts are now supported.
* #10166: rewrite self-recursion to iteration in pstats.Stats.add(). Also add ↵Georg Brandl2010-10-221-0/+2
| | | | a unittest and a stats test file.
* Fix #10162: Add try/except around _winreg.OpenKey for keys that areBrian Curtin2010-10-211-0/+3
| | | | | | | | unreadable by all users, e.g., Flash, Silverlight, and Java keys were causing errors. We don't currently have a way to grant/deny permissions for a key via winreg so there are no tests for this.
* Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-211-0/+3
| | | | They can be retrieved through a new attribute `sys._xoptions`.
* #9919: fix off-by-one error in lineno command in Misc/gdbinit; also add ↵Georg Brandl2010-10-211-3/+4
| | | | newline to its output.
* Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead ofVictor Stinner2010-10-201-0/+6
| | | | | | | the locale encoding. If the LANG (and LC_ALL and LC_CTYPE) environment variable is not set, the locale encoding is ISO-8859-1, whereas most programs (including Python) expect UTF-8. Python already uses UTF-8 for the filesystem encoding and to encode command line arguments on this OS.
* logging: Made StreamHandler terminator configurable.Vinay Sajip2010-10-201-0/+2
|
* Fix for issue #7473.Ronald Oussoren2010-10-201-0/+3
| | | | | | | Without this patch you'll get link errors in some extensions (in particular the _curses_panel) one when you try to build a 3-way universal framework when you previously installed a 2-way universal framework using the python.org installer.
* logging: Allowed filters to be just callables.Vinay Sajip2010-10-191-0/+2
|
* logging: Added tests for _logRecordClass changes.Vinay Sajip2010-10-191-0/+2
|