summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-0/+3
| | | | (the encoder already accepts them).
* #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in ↵Ezio Melotti2011-11-141-0/+3
| | | | HTMLParser.
* Add NEWS entry for #13193Antoine Pitrou2011-11-121-0/+3
|
* Remove duplicate ACKS.Florent Xicluna2011-11-111-2/+0
|
* Fix #13384. Remove __future__ import in 3.x code.Brian Curtin2011-11-111-0/+2
|
* Issue #13191: typo in argparse docsEli Bendersky2011-11-111-0/+1
|
* Issue #13365: correct an error in the documentation of str.expandtabsEli Bendersky2011-11-111-0/+1
|
* Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitelyAntoine Pitrou2011-11-092-0/+4
| | | | when called with a timeout. Patch by Arnaud Ysmal.
* Partial patch for issue #11812: Take care of test_telnetlib.pyJesus Cea2011-11-081-0/+3
|
* Solved a potential deadlock in test_telnetlib.py. Related to issue #11812Jesus Cea2011-11-081-0/+2
|
* Issue #13237: Forward port subprocess module updates and explicitly document ↵Nick Coghlan2011-11-081-0/+3
| | | | UTF-8 encoding assumption when universal_newlines=True
* Revert "Accept None as start and stop parameters for list.index() and ↵Petri Lehtinen2011-11-061-3/+0
| | | | | | tuple.index()" Issue #13340.
* curses.tparm() is expecting a byte string, not curses.tigetstr()Petri Lehtinen2011-11-061-1/+1
| | | | Issue #10570
* Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicodeAntoine Pitrou2011-11-051-0/+3
| | | | error handler in interactive mode (when calling into PyOS_Readline()).
* Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-051-0/+3
| | | | Closes #13340.
* Remove __pycache__ directories correctly on OpenBSDPetri Lehtinen2011-11-051-0/+5
| | | | | | | | | | | The find utility of OpenBSD doesn't support the "-exec cmd {} +" action. Change it to use "-depth -exec cmd {} ;" instead. Also, remove __pycache__ before *.py[co], as most bytecode files are in __pycache__ directories. Only those generated by Python 2 under Doc/tools are not. Closes #13326.
* Issue #3067: Enhance the documentation and docstring of locale.setlocale()Petri Lehtinen2011-11-051-1/+2
|
* Fix Maildir initialization so that maildir contents are read correctly.Petri Lehtinen2011-11-051-0/+3
| | | | Closes #13254.
* Issue #13343: Fix a SystemError when a lambda expression uses a globalAmaury Forgeot d'Arc2011-11-041-0/+4
| | | | | variable in the default value of a keyword-only argument: (lambda *, arg=GLOBAL_NAME: None)
* Issue #3067: Fix the error raised by locale.setlocale()Petri Lehtinen2011-11-042-0/+4
|
* Closes #13140: Fix the daemon_threads attribute of ThreadingMixIn.Florent Xicluna2011-11-041-0/+2
|
* Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.Ross Lagerwall2011-11-041-0/+3
| | | | Thanks to Robert Xiao.
* Issue #10570: curses.putp() is now expecting a byte string, instead of aVictor Stinner2011-11-031-2/+2
| | | | | | | Unicode string. This is an incompatible change, but putp() is used to emit terminfo commands, which are bytes strings, not Unicode strings.
* Issue #10570: curses.tigetstr() is now expecting a byte string, instead of aVictor Stinner2011-11-021-0/+3
| | | | | | Unicode string. This is an incompatible change, but the previous behaviour was completly wrong.
* Closes #2892: preserve iterparse events in case of SyntaxError.Florent Xicluna2011-11-011-0/+2
|
* #670664: Fix HTMLParser to correctly handle the content of ↵Ezio Melotti2011-11-011-2/+5
| | | | ``<script>...</script>`` and ``<style>...</style>``.
* Issue #13304: Skip test case if user site-packages disabled (-s orNed Deily2011-10-312-0/+4
| | | | PYTHONNOUSERSITE). (Patch by Carl Meyer)
* Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortErrorSenthil Kumaran2011-10-311-0/+3
| | | | even when reporthook is None. Patch by Jyrki Pulliainen.
* Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.Ned Deily2011-10-311-0/+3
| | | | (Patch by Roger Serwy)
* Merge headsFlorent Xicluna2011-10-301-0/+5
|\
| * Issue #13293: Better error message when trying to marshal bytes using ↵Florent Xicluna2011-10-301-0/+3
| | | | | | | | xmlrpc.client.
| * Closes #13291: NameError in xmlrpc package.Florent Xicluna2011-10-301-0/+2
| |
* | Add Misc/NEWS entry for issue #10519Petri Lehtinen2011-10-301-0/+3
|/
* Issue #10363: Deallocate global locks in Py_Finalize().Antoine Pitrou2011-10-301-0/+2
|
* - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.Barry Warsaw2011-10-281-0/+2
|
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-0/+2
|
* #13273: fix a bug that prevented HTMLParser to properly detect some tags ↵Ezio Melotti2011-10-281-0/+3
| | | | when strict=False.
* merge headsPetri Lehtinen2011-10-241-0/+11
|\
| * Issue #10332: multiprocessing: fix a race condition when a Pool is closedCharles-François Natali2011-10-241-0/+3
| | | | | | | | before all tasks have completed.
| * Issue #13255: wrong docstrings in array module.Florent Xicluna2011-10-241-0/+2
| |
| * Issue 13141: Demonstrate recommended style for socketserver examples.Florent Xicluna2011-10-231-0/+6
| |
* | Issue #13018: Fix reference leaks in error paths in dictobject.c.Petri Lehtinen2011-10-241-0/+3
|/ | | | Patch by Suman Saha.
* Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵Nick Coghlan2011-10-231-0/+4
| | | | metaclass inheritance. Patch by Daniel Urban.
* Issue #9168: now smtpd is able to bind privileged port.Florent Xicluna2011-10-201-0/+2
|
* News entry for Issue12529 and Issue12604Senthil Kumaran2011-10-201-0/+6
|
* 3.2 - Fix closes Issue6090 - Raise a ValueError, instead of failing with ↵Senthil Kumaran2011-10-191-0/+3
| | | | | | | unrelated exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
* Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-181-0/+3
|
* Issue #13188: When called without an explicit traceback argument,Antoine Pitrou2011-10-181-0/+4
| | | | | generator.throw() now gets the traceback from the passed exception's `__traceback__` attribute. Patch by Petri Lehtinen.
* #12448: smtplib now flushes stdout while running ``python -m smtplib``Ezio Melotti2011-10-181-0/+3
| | | | in order to display the prompt correctly. Patch by Petri Lehtinen.
* Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵Nadeem Vawda2011-10-171-0/+3
| | | | now available on Windows.