summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+3
| | | | a function or a loop (e.g. "return" or "break").
* Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+2
|
* Add credits for Martin Panter.Serhiy Storchaka2015-01-261-1/+1
|
* Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-0/+2
|
* Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-0/+7
| | | | returned NotImplemented. Removed incorrect implementations of __ne__().
* handle headers with no key (closes #19996)Benjamin Peterson2015-01-261-0/+3
| | | | Patch by Cory Benfield.
* Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-0/+3
| | | | replacment string longer than mailformed input data.
* Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-0/+2
|
* Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-0/+2
|
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-182-0/+4
| | | | Patch by Al Sweigart.
* Issue #23211: Workaround test_logging failure on some OS X 10.6 systems:Ned Deily2015-01-181-0/+2
| | | | | getaddrinfo("localhost") can fail depending on the name server configuration, use "127.0.0.0" instead.
* capitialize "HttpOnly" and "Secure" as they appear in the standard and other ↵Benjamin Peterson2015-01-171-0/+3
| | | | | | impls (closes #23250) Patch by Jon Dufresne.
* fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-151-0/+3
| | | | Patch by Marc Abramowitz.
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-0/+1
| | | | Patch by Karan Goel.
* Issue #23209, #23225: selectors.BaseSelector.close() now clears its internalVictor Stinner2015-01-131-0/+4
| | | | | reference to the selector mapping to break a reference cycle. Initial patch written by Martin Richard.
* Issue 19548: update codecs module documentationNick Coghlan2015-01-061-0/+8
| | | | | | | | - clarified the distinction between text encodings and other codecs - clarified relationship with builtin open and the io module - consolidated documentation of error handlers into one section - clarified type constraints of some behaviours - added tests for some of the new statements in the docs
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-0/+4
| | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* Issue #20896, #22935: The ssl.get_server_certificate() function now uses theVictor Stinner2015-01-061-0/+5
| | | | | | ssl.PROTOCOL_SSLv23 protocol by default, not ssl.PROTOCOL_SSLv3, for maximum compatibility and support platforms where ssl.PROTOCOL_SSLv3 support is disabled.
* Issue #23132: Mitigate regression in speed and clarity in ↵Raymond Hettinger2015-01-061-0/+2
| | | | functools.total_ordering.
* merge 3.3 (closes #23165)Benjamin Peterson2015-01-041-0/+3
|\
| * merge 3.2 (closes #23165)Benjamin Peterson2015-01-041-0/+3
| |\
| | * add some overflow checks before multiplying (closes #23165)Benjamin Peterson2015-01-041-0/+3
| | |
* | | make PROTOCOL_SSLv23 the default protocol version for ftplib (closes #23111)Benjamin Peterson2014-12-301-0/+3
| | |
* | | Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),Victor Stinner2014-12-211-0/+3
| | | | | | | | | | | | instead of reading /dev/urandom, to get pseudo-random bytes.
* | | fix behavior of trailing slash redirection when a query string is involved ↵Benjamin Peterson2014-12-261-0/+3
| | | | | | | | | | | | (closes #23112)
* | | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-221-0/+3
| | | | | | | | | | | | Patch by Martin Panter.
* | | Issue #19104: pprint now produces evaluable output for wrapped strings.Serhiy Storchaka2014-12-201-0/+2
| | |
* | | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-201-0/+2
| | |
* | | Issue #15513: Added a __sizeof__ implementation for pickle classes.Serhiy Storchaka2014-12-161-1/+3
| | |
* | | Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, canSerhiy Storchaka2014-12-161-0/+4
| | | | | | | | | | | | | | | produce more compact result and no longer produces invalid output if input data contains MEMOIZE opcodes together with PUT or BINPUT opcodes.
* | | Issue #20577: move configuration of FormatParagraph extension to new extensionTerry Jan Reedy2014-12-161-0/+5
| | | | | | | | | | | | configuration dialog. Patch by Tal Einat.
* | | use autoconf macro to check for pkg-config (closes #15506)Benjamin Peterson2014-12-151-0/+3
| | |
* | | pop the loop block even for infinite while loops (closes #23048)Benjamin Peterson2014-12-131-0/+2
| | |
* | | Issue #17128: Use private version of OpenSSL for 3.x OS X 10.5+ installers.Ned Deily2014-12-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Among other issues, the Apple-supplied 0.9.7 libs for the 10.5 ABI cannot verify newer SHA-256 certs as now used by python.org services. Document in the installer ReadMe some of the certificate management issues that users now need to be more concerned with due to PEP 476's enabling cert verification by default. For now, continue to use the Apple-supplied 0.9.8 libs for the 10.6+ installer since they use Apple private APIs to verify certificates using the system- and user-managed CA keychain stores.
* | | 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
| | |