summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed byCharles-François Natali2011-07-021-0/+3
| | | | the garbage collector while the Heap lock is held.
* Fixup repr for dict_proxy objects.Raymond Hettinger2011-06-291-0/+2
|
* Issue #9516: Update Misc/NEWS.Ned Deily2011-06-291-0/+11
|
* Issue #12141: Install a copy of template C module file so thatNed Deily2011-06-281-0/+4
| | | | | test_build_ext of test_distutils is no longer silently skipped when run outside of a build directory.
* Issue #8746: Correct faulty configure checks so that os.chflags() andNed Deily2011-06-282-0/+12
| | | | | | | os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
* Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9Ned Deily2011-06-281-0/+3
| | | | on Mac OS X. (Patch by Ronald Oussoren)
* Issue 11802: filecmp cache was growing without bound.Raymond Hettinger2011-06-251-0/+3
|
* Issue 12404: Remove C89 incompatible code from mmap module.Ross Lagerwall2011-06-251-0/+3
| | | | Patch by Akira Kitada.
* Revert d370d609d09b as requested by Terry Jan Reedy:Victor Stinner2011-06-201-2/+0
| | | | "#3067: locale.setlocale() accepts a Unicode locale."
* Close #3067: locale.setlocale() accepts a Unicode locale.Victor Stinner2011-06-201-0/+2
|
* #11700: proxy object close methods can now be called multiple timesR David Murray2011-06-181-0/+3
| | | | | | This makes them work like the close provided by regular file objects. This patch also backports the close-the-underlying-file code for _ProxyFile objects that was introduced along with context manager support in the 3.x branch.
* Issue #12133: AbstractHTTPHandler.do_open() of urllib.request closes the HTTPVictor Stinner2011-06-171-0/+4
| | | | | connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti.
* allow "fake" filenames in findsource (closes #9284)Benjamin Peterson2011-06-111-0/+3
| | | | | | This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
* merge 2.7.2 release branchBenjamin Peterson2011-06-112-2/+2
|\
| * bump to 2.7.2 finalBenjamin Peterson2011-06-112-2/+2
| |
* | merge headsBenjamin Peterson2011-06-101-0/+5
|\ \
| * | #10694: zipfile now ignores garbage at the end of a zipfile.R David Murray2011-06-091-0/+2
| | | | | | | | | | | | Original fix by 'rep', final patch (with tests) by Xuanji Li.
| * | MergeBrian Curtin2011-06-091-0/+3
| | |
* | | merge 2.7.2 release branch with fix for #12009Benjamin Peterson2011-06-102-0/+6
|\ \ \ | |/ / |/| / | |/
| * fix regression in netrc comment handling (closes #12009)Benjamin Peterson2011-06-102-0/+6
| |
* | Issue #12080: Fix a performance issue in Decimal._power_exact that caused ↵Mark Dickinson2011-06-041-0/+3
| | | | | | | | some corner-case Decimal.__pow__ calls to take an unreasonably long time.
* | merge 2.7.2 release branchBenjamin Peterson2011-06-031-2/+3
|\ \ | |/
| * another benefit of this changeBenjamin Peterson2011-06-031-2/+3
| |
* | Fix named tuples to work with vars().Raymond Hettinger2011-06-031-0/+2
| |
* | sys.checkinterval() now refreshes the current countdown ticker.Raymond Hettinger2011-06-021-0/+7
| |
* | merge 2.7.2 release branchBenjamin Peterson2011-06-011-0/+11
|\ \ | |/
| * simply use the Python version for pyexpat.__version__ #12221Benjamin Peterson2011-05-311-0/+5
| |
| * add 2.7.2 headerBenjamin Peterson2011-05-311-0/+7
| |
* | Close #12085: Fix an attribute error in subprocess.Popen destructor if theVictor Stinner2011-05-312-0/+5
| | | | | | | | | | constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
* | Issue #12057: Add tests for ISO 2022 codecsVictor Stinner2011-05-301-0/+6
| | | | | | | | iso2022_jp, iso2022_jp_2 and iso2022_kr
* | Issue #1195: fix the issue number of the NEWS entryVictor Stinner2011-05-301-1/+1
| |
* | Issue #12016: my_fgets() now always clears errors before calling fgets(). FixVictor Stinner2011-05-301-0/+16
|/ | | | | the following case: sys.stdin.read() stopped with CTRL+d (end of file), raw_input() interrupted by CTRL+c.
* bump to 2.7.2rc1v2.7.2rc1Benjamin Peterson2011-05-292-2/+2
|
* Issue #12205: Fix test_subprocess failure due to uninstalled test data.Ned Deily2011-05-291-0/+2
|
* Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,Ned Deily2011-05-281-0/+4
| | | | | ensure "make install" creates symlinks in --prefix bin for the "-32" files in the framework bin directory like the installer does.
* Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+5
| | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (patch by Ronald Oussoren)
* raise an ValueError in getvalue() on closed StringIO (closes #12161)Benjamin Peterson2011-05-262-0/+4
| | | | Thanks for Catalin Iacob for the patch.
* Close #12182: Fix pydoc.HTMLDoc.multicolumn() if Python uses the new (true)Victor Stinner2011-05-262-0/+4
| | | | division (python -Qnew). Patch written by Ralf W. Grosse-Kunstleve.
* Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-0/+2
|
* Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError ifVictor Stinner2011-05-251-0/+3
| | | | the file is closed.
* Issue #1441530: In imaplib, use makefile() to wrap the SSL socket to avoidCharles-François Natali2011-05-241-0/+3
| | | | heap fragmentation and MemoryError with some malloc implementations.
* Issue #12100: Don't reset incremental encoders of CJK codecs at each call toVictor Stinner2011-05-241-0/+4
| | | | | their encode() method anymore, but continue to call the reset() method if the final argument is True.
* correctly lookup __dir__Benjamin Peterson2011-05-231-0/+3
|
* Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-211-1/+4
| | | | to be able to unload the module.
* merge headsBenjamin Peterson2011-05-171-0/+6
|\
| * (backport) Fixes #11088: IDLE crashes when using F5 to run a script on OSX ↵Ronald Oussoren2011-05-171-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with Tk 8.5 Without this patch IDLE will crash reliably on OSX when Tkinter is linked to TkCocoa 8.5.x. To reproduce: * Create a new file (script.py) with the following two lines: x = raw_input('prompt: ') print x * Save the script * Run the script using the F5 keyboard shortcut (running from the menu works fine) The patch is a fairly crude hack, but we haven't found a better workaround for this Tk bug yet.
| * (backport)Fix #10154 and #10090: locale normalizes the UTF-8 encoding to ↵Ronald Oussoren2011-05-171-0/+3
| | | | | | | | | | | | | | | | "UTF-8" instead of "UTF8" On MacOSX and OpenBSD (and possibly other BSDs) "en_US.UTF-8" is a valid locale while "en_US.UTF8" is not. As the former works on Linux as well it is better to normalize to that value.
* | stop using the old brain-dead interface for providing attributes/methodsBenjamin Peterson2011-05-171-0/+4
|/ | | | This closes #12099.
* NEWS entry for fix of issue #9516Ronald Oussoren2011-05-151-0/+3
|
* Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tailNadeem Vawda2011-05-141-0/+3
| | | | attribute when called without a max_length argument.