summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The portSerhiy Storchaka2014-12-121-0/+3
| | | | value in the host header was set to "None". Patch by Demian Brecht.
* Issue #23006: Improve the documentation and indexing of dict.__missing__.Terry Jan Reedy2014-12-101-0/+4
| | | | | Add an entry in the language datamodel special methods section. Revise and index its discussion in the stdtypes mapping/dict section.
* Issue #23016: A warning no longer produces AttributeError when the programSerhiy Storchaka2014-12-101-0/+3
| | | | is run with pythonw.exe.
* Issue #21775: shutil.copytree(): fix crash when copying to VFATBerker Peksag2014-12-101-0/+6
| | | | | | | | | An exception handler assumed that that OSError objects always have a 'winerror' attribute. That is not the case, so the exception handler itself raised AttributeError when run on Linux (and, presumably, any other non-Windows OS). Patch by Greg Ward.
* inspect: Fix getsource() to load updated source of reloaded moduleYury Selivanov2014-12-081-0/+3
| | | | Issue #1218234. Initial patch by Berker Peksag.
* NEWS: Remove duplicate entryYury Selivanov2014-12-081-3/+0
|
* NEWS: Add news entry for issue #23009.Yury Selivanov2014-12-081-0/+6
|
* HTTPSConnection: prefer the context's check_hostname attribute over the ↵Benjamin Peterson2014-12-071-0/+3
| | | | constructor parameter (#22959)
* allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-061-0/+3
| | | | Patch by Kurt Roeckx.
* merge 3.3 (#16043)Benjamin Peterson2014-12-061-0/+3
|\
| * merge 3.2 (#16043)Benjamin Peterson2014-12-061-0/+3
| |\
| | * add a default limit for the amount of data xmlrpclib.gzip_decode will return ↵Benjamin Peterson2014-12-061-0/+3
| | | | | | | | | | | | (closes #16043)
| | * Bump to 3.2.6v3.2.6Georg Brandl2014-10-121-1/+1
| | |
| | * #16040: fix unlimited read from connection in nntplib.Georg Brandl2014-10-121-0/+4
| | |
| | * Bump to 3.2.6rc1Georg Brandl2014-10-042-2/+2
| | |
| | * Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX).Georg Brandl2014-10-011-0/+6
| | |
| | * Issue #19855: uuid.getnode() on Unix now looks on the PATH for theGeorg Brandl2014-09-302-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | executables used to find the mac address, with /sbin and /usr/sbin as fallbacks. Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with virtual interface. Original patch by Kent Frazier. Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov. Issue #16102: Make uuid._netbios_getnode() work again on Python 3.
| | * Issue #20939: Use www.example.com instead of www.python.org to avoid testNed Deily2014-03-271-0/+7
| | | | | | | | | | | | failures when ssl is not present.
| | * Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limitGeorg Brandl2014-09-301-0/+3
| | | | | | | | | | | | line length. Patch by Emil Lind.
| | * Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all ↵Georg Brandl2014-09-171-0/+3
| | | | | | | | | | | | interfaces.
| | * Lax cookie parsing in http.cookies could be a security issue when combinedAntoine Pitrou2014-09-162-0/+5
| | | | | | | | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
| | * Issue #22419: Limit the length of incoming HTTP request in wsgiref server toGeorg Brandl2014-09-302-0/+5
| | | | | | | | | | | | | | | 65536 bytes and send a 414 error code for higher lengths. Patch contributed by Devin Cook.
| | * Issue #22517: When a io.BufferedRWPair object is deallocated, clear itsGeorg Brandl2014-09-301-0/+3
| | | | | | | | | | | | weakrefs.
| | * Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 toGeorg Brandl2014-09-301-0/+4
| | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen.
| | * Issue #16042: CVE-2013-1752: smtplib: Limit amount of data read byGeorg Brandl2014-09-301-0/+3
| | | | | | | | | | | | limiting the call to readline(). Original patch by Christian Heimes.
| | * Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read byGeorg Brandl2014-09-301-0/+4
| | | | | | | | | | | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola.
| | * Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more thanGeorg Brandl2014-09-301-1/+4
| | | | | | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen.
| | * Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesGeorg Brandl2014-09-301-0/+6
| | | | | | | | | | | | | | | | | | | | | inside subjectAltName correctly. Formerly the module has used OpenSSL's GENERAL_NAME_print() function to get the string represention of ASN.1 strings for ``rfc822Name`` (email), ``dNSName`` (DNS) and ``uniformResourceIdentifier`` (URI).
* | | Issue #16893: Update Idle doc chapter to match current Idle and add newTerry Jan Reedy2014-12-061-0/+3
| | | | | | | | | | | | information.
* | | Issue #22914: Update the Python 2/3 porting HOWTO to describe a moreBrett Cannon2014-12-051-0/+3
| | | | | | | | | | | | automated process.
* | | Issue #14099: ZipFile.open() no longer reopen the underlying file. ObjectsSerhiy Storchaka2014-12-031-0/+5
| | | | | | | | | | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor.
* | | Issue #20335: bytes constructor now raises TypeError when encoding or errorsSerhiy Storchaka2014-12-021-0/+3
| | | | | | | | | | | | is specified with non-string argument. Based on patch by Renaud Blanch.
* | | - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile isBarry Warsaw2014-12-011-0/+4
|\ \ \ | | | | | | | | | | | | | | | | asked to compile a source file containing multiple dots in the source file name.
| * | | - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile isBarry Warsaw2014-12-011-0/+4
| | | | | | | | | | | | | | | | | | | | asked to compile a source file containing multiple dots in the source file name.
* | | | Add NEWS items for Idle patches and a turtledemo patch.Terry Jan Reedy2014-12-011-1/+23
| | | |
* | | | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-5/+5
|/ / /
* | | Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.Serhiy Storchaka2014-12-011-0/+3
| | | | | | | | | | | | Original patch by Martin Panter.
* | | Issue #22838: All test_re tests now work with unittest test discovery.Serhiy Storchaka2014-12-011-0/+2
| | |
* | | backout 9fcf4008b626 (#9179) for further considerationBenjamin Peterson2014-11-301-3/+0
| | |
* | | add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-301-0/+2
| | | | | | | | | | | | Patch by Alex Gaynor.
* | | Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-0/+1
| | | | | | | | | | | | Patch written by Martin Richard.
* | | Issue #22314: pydoc now works when the LINES environment variable is set.Serhiy Storchaka2014-11-271-0/+5
| | |
* | | Issue #22915: SAX parser now supports files opened with file descriptor orSerhiy Storchaka2014-11-271-0/+3
| | | | | | | | | | | | bytes path.
* | | Issue #21514: The documentation of the json module now refers to new JSON RFCSerhiy Storchaka2014-11-271-0/+6
| | | | | | | | | | | | 7159 instead of obsoleted RFC 4627.
* | | Issue #22609: Constructors and update methods of mapping classes in theSerhiy Storchaka2014-11-271-0/+3
| | | | | | | | | | | | collections module now accept the self keyword argument.
* | | add context parameter to HTTPHandler (closes #22788)Benjamin Peterson2014-11-241-0/+2
| | |
* | | add NEWS note for #22921Benjamin Peterson2014-11-241-0/+3
| | |
* | | Issue #22894: TestCase.subTest() would cause the test suite to be stopped ↵Antoine Pitrou2014-11-231-0/+3
| | | | | | | | | | | | when in failfast mode, even in the absence of failures.
* | | Issue #22638: SSLv3 is now disabled throughout the standard library.Antoine Pitrou2014-10-171-0/+3
| | | | | | | | | | | | It can still be enabled by instantiating a SSLContext manually.
* | | Close #22370: Windows detection in pathlib is now more robust.Antoine Pitrou2014-11-181-0/+2
| | |