summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22769: Fixed ttk.Treeview.tag_has() when called without arguments.Serhiy Storchaka2014-11-071-0/+2
|
* PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-0/+2
| | | | Patch by Alex Gaynor with some modifications by me.
* Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2Serhiy Storchaka2014-11-021-0/+3
| | | | and above. Patch by Tim Graham.
* backport context argument of urlopen (#22366) for pep 476Senthil Kumaran2014-09-191-0/+4
|
* Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff ↵Antoine Pitrou2014-11-021-0/+3
| | | | bytes on a 32-bit platform.
* Issue #17896: Move Windows external lib sources from .. to externals.Zachary Ware2014-11-021-0/+3
|
* Issue #22770: Prevent some Tk segfaults on OS X when running gui tests.Ned Deily2014-11-021-0/+2
| | | | | | | When running tests in subprocesses with the regrtest -j option, a bug in Cocoa Tk can result in a Tcl segfault. Avoid the problem by forcing Tk to fully initialize as an OS X gui process before destroying the Tcl instance and creating another. (Original patch by Serhiy Storchaka)
* Issue #17717: Pull NASM from svn.python.org for OpenSSL build.Zachary Ware2014-11-011-0/+3
|
* Brought excluded code into the scope of a try block in SysLogHandler.emit().Vinay Sajip2014-11-011-0/+3
|
* Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.Berker Peksag2014-11-011-0/+3
|
* Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.Serhiy Storchaka2014-10-311-0/+3
|
* Merge headsSerhiy Storchaka2014-10-301-0/+3
|\
| * Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.) now ↵Antoine Pitrou2014-10-301-0/+3
| | | | | | | | return False when the underlying stat call raises NotADirectoryError.
* | Issue #22410: Module level functions in the re module now cache compiledSerhiy Storchaka2014-10-301-0/+3
|/ | | | locale-dependent regular expressions taking into account the locale.
* Issue #8876: distutils now falls back to copying files when hard linking ↵Antoine Pitrou2014-10-301-0/+4
| | | | | | doesn't work. This allows use with special filesystems such as VirtualBox shared folders.
* Issue #22173: Update lib2to3 tests to use unittest test discovery.Zachary Ware2014-10-291-0/+2
|
* #18853: Fix resource warning in shlex's __main__ section.R David Murray2014-10-181-0/+2
| | | | Report and original fix by Vajrasky Kok.
* #9351: set_defaults on subparser is no longer ignored if set on parent.R David Murray2014-10-171-0/+3
| | | | | | | | Before, if a default was set on the parent parser, any default for that variable set via set_defaults on a subparser would be ignored. Now the subparser set_defaults is honored. Patch by Jyrki Pullianinen.
* #21991: make headerregistry params property MappingProxyType.R David Murray2014-10-171-0/+4
| | | | | | | | | It is unlikely anyone is using the fact that the dictionary returned by the 'params' attribute was previously writable, but even if someone is the API is provisional so this kind of change is acceptable (and needed, to get the API "right" before it becomes official). Patch by Stéphane Wirtel.
* Issue #22653: Fix an assertion failure in debug mode when doing a reentrant ↵Antoine Pitrou2014-10-171-0/+3
| | | | dict insertion in debug mode.
* Issue #22644: Update the Windows build to OpenSSL 1.0.1jZachary Ware2014-10-171-1/+5
|
* Issue #16000: Convert test_curses to use unittestZachary Ware2014-10-171-0/+2
|
* merge 3.3 (#22643)Benjamin Peterson2014-10-151-0/+3
|\
| * fix integer overflow in unicode case operations (closes #22643)Benjamin Peterson2014-10-151-0/+3
| |
| * Issue #22518: Fixed integer overflow issues in "backslashreplace",v3.3.6rc1Serhiy Storchaka2014-10-041-0/+3
| | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers.
| * Bump to 3.3.6rc1Georg Brandl2014-10-041-3/+3
| |
* | Issue #22641: In asyncio, the default SSL context for client connections is ↵Antoine Pitrou2014-10-151-0/+3
| | | | | | | | now created using ssl.create_default_context(), for stronger security.
* | Issue #22435: Fix a file descriptor leak when SocketServer bind fails.Charles-François Natali2014-10-131-0/+2
| |
* | #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-0/+3
| | | | | | | | Patch by Meador Inge.
* | Issue #22604: Fix assertion error in debug mode when dividing a complex ↵Antoine Pitrou2014-10-101-0/+3
| | | | | | | | number by (nan+0j).
* | Issue #11694: Raise ConversionError in xdrlib as documentedPetri Lehtinen2014-10-101-0/+3
| |
* | Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present.Berker Peksag2014-10-101-0/+6
| | | | | | | | Patch by Remi Pointel.
* | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-081-0/+3
| | | | | | | | | | | | exception tracebacks. Initial patch by Mark Shannon.
* | Merge from 3.4.2 release head back into 3.4 mainline.Larry Hastings2014-10-081-2/+4
|\ \
| * | Post-release changes after 3.4.2 final.Larry Hastings2014-10-081-0/+12
| | |
* | | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called ↵Antoine Pitrou2014-10-051-0/+3
| | | | | | | | | | | | with an iterator alive.
* | | #11866: Eliminate race condition in the computation of names for new threads.R David Murray2014-10-041-0/+3
| | | | | | | | | | | | Original patch by Peter Saveliev.
* | | Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵Antoine Pitrou2014-10-041-0/+3
| | | | | | | | | | | | | | | | | | mutated while iterating. Patch by Olivier Grisel.
* | | Fixed issue number for issue #22470 in Misc/NEWS.Serhiy Storchaka2014-10-041-1/+1
| | |
* | | Issue #22518: Fixed integer overflow issues in "backslashreplace",Serhiy Storchaka2014-10-041-0/+3
| | | | | | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers.
* | | Issue #22219: The zipfile module CLI now adds entries for directoriesSerhiy Storchaka2014-10-041-0/+3
| | | | | | | | | | | | (including empty directories) in ZIP file.
* | | also use openssl envvars to find certs on windows (closes #22449)Benjamin Peterson2014-10-031-0/+3
| | | | | | | | | | | | Patch by Christian Heimes and Alex Gaynor.
* | | - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-0/+2
| | |
* | | - Issue #18096: Fix library order returned by python-config.doko@ubuntu.com2014-10-021-0/+2
| | |
* | | Issue #20076: Added non derived UTF-8 aliases to locale aliases table.Serhiy Storchaka2014-10-011-0/+2
| | |
* | | Issue #20079: Added locales supported in glibc 2.18 to locale alias table.Serhiy Storchaka2014-10-011-0/+2
| | |
* | | Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() norVictor Stinner2014-09-301-0/+3
| | | | | | | | | | | | os.posix_fallocate() because their prototypes in system headers are wrong.
* | | merge 3.3 (#22520)Benjamin Peterson2014-09-301-0/+3
|\ \ \ | | |/ | |/|
| * | prevent overflow in unicode_repr (closes #22520)Benjamin Peterson2014-09-301-0/+3
| | |
* | | merge 3.3 (#22517)Benjamin Peterson2014-09-301-0/+3
|\ \ \ | |/ /