]> granicus.if.org Git - python/log
python
10 years agoimprove incorrect French (#23109)
Benjamin Peterson [Wed, 24 Dec 2014 19:58:05 +0000 (13:58 -0600)]
improve incorrect French (#23109)

Following suggestions from Clément.

10 years agodoucment that Py_SetPath copies its argument (closes #23110)
Benjamin Peterson [Wed, 24 Dec 2014 16:49:11 +0000 (10:49 -0600)]
doucment that Py_SetPath copies its argument (closes #23110)

10 years agoUpgrade pip to 6.0.2 and setuptools to 8.2.1
Donald Stufft [Tue, 23 Dec 2014 14:18:38 +0000 (09:18 -0500)]
Upgrade pip to 6.0.2 and setuptools to 8.2.1

10 years agoasyncio doc: update also Queue docstrings
Victor Stinner [Mon, 22 Dec 2014 21:09:50 +0000 (22:09 +0100)]
asyncio doc: update also Queue docstrings

10 years agoasyncio doc: Fix doc of get and put methods of Queue
Victor Stinner [Mon, 22 Dec 2014 21:07:06 +0000 (22:07 +0100)]
asyncio doc: Fix doc of get and put methods of Queue

10 years agoallow more operations to work on detached streams (closes #23093)
Benjamin Peterson [Mon, 22 Dec 2014 02:51:50 +0000 (20:51 -0600)]
allow more operations to work on detached streams (closes #23093)

Patch by Martin Panter.

10 years agoIssue #19104: pprint now produces evaluable output for wrapped strings.
Serhiy Storchaka [Sat, 20 Dec 2014 18:57:15 +0000 (20:57 +0200)]
Issue #19104: pprint now produces evaluable output for wrapped strings.

10 years agoIssue #23071: "namereplace_errors" was added only in 3.5.
Serhiy Storchaka [Sat, 20 Dec 2014 16:53:01 +0000 (18:53 +0200)]
Issue #23071: "namereplace_errors" was added only in 3.5.

10 years agoIssue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.
Serhiy Storchaka [Sat, 20 Dec 2014 15:42:38 +0000 (17:42 +0200)]
Issue #23071: Added missing names to codecs.__all__.  Patch by Martin Panter.

10 years agoFix typo.
Barry Warsaw [Fri, 19 Dec 2014 16:21:35 +0000 (11:21 -0500)]
Fix typo.

10 years agoFix typo.
Barry Warsaw [Fri, 19 Dec 2014 16:20:00 +0000 (11:20 -0500)]
Fix typo.

10 years agoasyncio: IocpProactor.wait_for_handle() test now also checks the result of the
Victor Stinner [Fri, 19 Dec 2014 16:10:44 +0000 (17:10 +0100)]
asyncio: IocpProactor.wait_for_handle() test now also checks the result of the
future

10 years agoasyncio: sync with Tulip
Victor Stinner [Thu, 18 Dec 2014 22:47:27 +0000 (23:47 +0100)]
asyncio: sync with Tulip

* Fix a race condition in BaseSubprocessTransport._try_finish().

  If the process exited before the _post_init() method was called, scheduling
  the call to _call_connection_lost() with call_soon() is wrong:
  connection_made() must be called before connection_lost().

  Reuse the BaseSubprocessTransport._call() method to schedule the call to
  _call_connection_lost() to ensure that connection_made() and
  connection_lost() are called in the correct order.

* Add repr(PipeHandle)

* Fix typo

10 years agoasyncio: sync with Tulip
Victor Stinner [Thu, 18 Dec 2014 11:29:53 +0000 (12:29 +0100)]
asyncio: sync with Tulip

10 years agoIssue #23074: asyncio.get_event_loop() now raises an exception if the thread
Victor Stinner [Thu, 18 Dec 2014 00:20:10 +0000 (01:20 +0100)]
Issue #23074: asyncio.get_event_loop() now raises an exception if the thread
has no event loop even if assertions are disabled.

10 years agoIssue #23070: Fix a comment in the tutorial.
Berker Peksag [Wed, 17 Dec 2014 12:56:47 +0000 (14:56 +0200)]
Issue #23070: Fix a comment in the tutorial.

"Python" has 6 characters, not 7.

Reported by Ross Burnett.

10 years agoIssue #23049: Pure python equivalent shouldn't imply more exactitude than is really...
Raymond Hettinger [Wed, 17 Dec 2014 02:16:57 +0000 (18:16 -0800)]
Issue #23049:  Pure python equivalent shouldn't imply more exactitude than is really there.

10 years agoIssue #15513: Added a __sizeof__ implementation for pickle classes.
Serhiy Storchaka [Tue, 16 Dec 2014 17:39:08 +0000 (19:39 +0200)]
Issue #15513: Added a __sizeof__ implementation for pickle classes.

10 years agoIssue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can
Serhiy Storchaka [Tue, 16 Dec 2014 16:00:56 +0000 (18:00 +0200)]
Issue #19858:  pickletools.optimize() now aware of the MEMOIZE opcode, can
produce more compact result and no longer produces invalid output if input
data contains MEMOIZE opcodes together with PUT or BINPUT opcodes.

10 years agoIssue #20577: move configuration of FormatParagraph extension to new extension
Terry Jan Reedy [Tue, 16 Dec 2014 08:21:26 +0000 (03:21 -0500)]
Issue #20577: move configuration of FormatParagraph extension to new extension
configuration dialog.  Patch by Tal Einat.

10 years agoasyncio doc: call_soon() does not call immediatly the callback. Patch written
Victor Stinner [Mon, 15 Dec 2014 16:50:55 +0000 (17:50 +0100)]
asyncio doc: call_soon() does not call immediatly the callback. Patch written
by Martin Panter.

10 years agoremove extra ssl imports (closes #23053)
Benjamin Peterson [Mon, 15 Dec 2014 15:04:13 +0000 (10:04 -0500)]
remove extra ssl imports (closes #23053)

Patch from Jan Matejek.

10 years agoIssue #22777: Test pickling with all protocols.
Serhiy Storchaka [Mon, 15 Dec 2014 12:03:42 +0000 (14:03 +0200)]
Issue #22777: Test pickling with all protocols.

10 years agoIssue #23015: Improved testing of the uuid module.
Serhiy Storchaka [Mon, 15 Dec 2014 10:03:44 +0000 (12:03 +0200)]
Issue #23015: Improved testing of the uuid module.

10 years agouse autoconf macro to check for pkg-config (closes #15506)
Benjamin Peterson [Mon, 15 Dec 2014 05:00:23 +0000 (00:00 -0500)]
use autoconf macro to check for pkg-config (closes #15506)

10 years agoFixed a typo in a comment (issue #23016).
Serhiy Storchaka [Sun, 14 Dec 2014 08:53:00 +0000 (10:53 +0200)]
Fixed a typo in a comment (issue #23016).

10 years agomake sure server threads get cleaned up
Benjamin Peterson [Sat, 13 Dec 2014 21:13:24 +0000 (16:13 -0500)]
make sure server threads get cleaned up

10 years agopop the loop block even for infinite while loops (closes #23048)
Benjamin Peterson [Sat, 13 Dec 2014 21:06:19 +0000 (16:06 -0500)]
pop the loop block even for infinite while loops (closes #23048)

10 years agoIssue #22823: Use set literals in lib2to3.
Serhiy Storchaka [Sat, 13 Dec 2014 19:50:49 +0000 (21:50 +0200)]
Issue #22823: Use set literals in lib2to3.

10 years agoIssue #23047: Fix typo in pyporting.rst.
Berker Peksag [Sat, 13 Dec 2014 13:48:22 +0000 (15:48 +0200)]
Issue #23047: Fix typo in pyporting.rst.

Patch by Chaitanya agrawal.

10 years agoIssue #17128: Use private version of OpenSSL for 3.x OS X 10.5+ installers.
Ned Deily [Sat, 13 Dec 2014 08:17:46 +0000 (00:17 -0800)]
Issue #17128: Use private version of OpenSSL for 3.x OS X 10.5+ installers.
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.

10 years agoAddress some comments from Nick Coghlan
Brett Cannon [Fri, 12 Dec 2014 20:13:43 +0000 (15:13 -0500)]
Address some comments from Nick Coghlan

10 years agoremove reference to dead irc channel (closes #23038)
Benjamin Peterson [Fri, 12 Dec 2014 14:56:33 +0000 (09:56 -0500)]
remove reference to dead irc channel (closes #23038)

10 years agoIssue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,
Victor Stinner [Fri, 12 Dec 2014 12:17:41 +0000 (13:17 +0100)]
Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c  on x86_64,
when Python is configure with --with-tsc. Patch written by Christian Heimes.

10 years agotest_selectors: Tolerate 2.0 seconds instead of 1.6 sec for very slow buildbots
Victor Stinner [Fri, 12 Dec 2014 11:57:35 +0000 (12:57 +0100)]
test_selectors: Tolerate 2.0 seconds instead of 1.6 sec for very slow buildbots

10 years agoIssue #22935: Fix test_ssl when the SSLv3 protocol is not supported
Victor Stinner [Fri, 12 Dec 2014 11:27:08 +0000 (12:27 +0100)]
Issue #22935: Fix test_ssl when the SSLv3 protocol is not supported

10 years agoIssue #22935: Fix ssl module when SSLv3 protocol is not supported
Victor Stinner [Fri, 12 Dec 2014 11:23:09 +0000 (12:23 +0100)]
Issue #22935: Fix ssl module when SSLv3 protocol is not supported

10 years agoIssue 23005: Fix typos
Raymond Hettinger [Fri, 12 Dec 2014 07:56:32 +0000 (23:56 -0800)]
Issue 23005: Fix typos

10 years agoIssue #22095: Fixed HTTPConnection.set_tunnel with default port. The port
Serhiy Storchaka [Fri, 12 Dec 2014 07:29:15 +0000 (09:29 +0200)]
Issue #22095: Fixed HTTPConnection.set_tunnel with default port.  The port
value in the host header was set to "None".  Patch by Demian Brecht.

10 years agoasyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3
Victor Stinner [Thu, 11 Dec 2014 22:30:17 +0000 (23:30 +0100)]
asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3

Mark the write end of the stdin pipe as non-inheritable.

10 years agoasyncio, tulip issue 202: Add unit test of pause/resume writing for proactor
Victor Stinner [Thu, 11 Dec 2014 21:23:19 +0000 (22:23 +0100)]
asyncio, tulip issue 202: Add unit test of pause/resume writing for proactor
socket transport

10 years agoIssue 22823: Use set literal in idlelib.
Terry Jan Reedy [Thu, 11 Dec 2014 10:33:36 +0000 (05:33 -0500)]
Issue 22823: Use set literal in idlelib.

10 years agoIssue #22823: Fixed an output of sets in examples.
Serhiy Storchaka [Thu, 11 Dec 2014 08:30:21 +0000 (10:30 +0200)]
Issue #22823: Fixed an output of sets in examples.

10 years agowhitespace
Terry Jan Reedy [Wed, 10 Dec 2014 23:49:58 +0000 (18:49 -0500)]
whitespace

10 years agoIssue #23006 whitespace
Terry Jan Reedy [Wed, 10 Dec 2014 23:48:23 +0000 (18:48 -0500)]
Issue #23006 whitespace

10 years agoIssue #23006: Improve the documentation and indexing of dict.__missing__.
Terry Jan Reedy [Wed, 10 Dec 2014 23:38:19 +0000 (18:38 -0500)]
Issue #23006: Improve the documentation and indexing of dict.__missing__.
Add an entry in the language datamodel special methods section.
Revise and index its discussion in the stdtypes mapping/dict section.

10 years agoIssue #23016: A warning no longer produces AttributeError when the program
Serhiy Storchaka [Wed, 10 Dec 2014 20:59:55 +0000 (22:59 +0200)]
Issue #23016: A warning no longer produces AttributeError when the program
is run with pythonw.exe.

10 years agofix path to patchlevel.py
Benjamin Peterson [Wed, 10 Dec 2014 16:04:17 +0000 (11:04 -0500)]
fix path to patchlevel.py

10 years ago#22918: Drop obsolete mention of 'keys' in datamodel __iter__ docs.
R David Murray [Wed, 10 Dec 2014 14:51:01 +0000 (09:51 -0500)]
#22918: Drop obsolete mention of 'keys' in datamodel __iter__ docs.

Patch by Chaitanya Agrawal.

10 years agoIssue #21775: shutil.copytree(): fix crash when copying to VFAT
Berker Peksag [Wed, 10 Dec 2014 00:50:32 +0000 (02:50 +0200)]
Issue #21775: shutil.copytree(): fix crash when copying to VFAT

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.

10 years agoIssue #12602: Add missing cross-references to runpy and using/cmdline docs.
Berker Peksag [Tue, 9 Dec 2014 23:47:02 +0000 (01:47 +0200)]
Issue #12602: Add missing cross-references to runpy and using/cmdline docs.

Patch by Éric Araujo.

10 years agoinspect: Fix getsource() to load updated source of reloaded module
Yury Selivanov [Mon, 8 Dec 2014 23:00:25 +0000 (18:00 -0500)]
inspect: Fix getsource() to load updated source of reloaded module

Issue #1218234. Initial patch by Berker Peksag.

10 years agoNEWS: Remove duplicate entry
Yury Selivanov [Mon, 8 Dec 2014 17:39:50 +0000 (12:39 -0500)]
NEWS: Remove duplicate entry

10 years agoNEWS: Add news entry for issue #23009.
Yury Selivanov [Mon, 8 Dec 2014 17:34:06 +0000 (12:34 -0500)]
NEWS: Add news entry for issue #23009.

10 years agoselectors: Fix typo in comment.
Yury Selivanov [Mon, 8 Dec 2014 17:30:10 +0000 (12:30 -0500)]
selectors: Fix typo in comment.

10 years agoselectors: Make sure EpollSelecrtor.select() works when no FD is registered.
Yury Selivanov [Mon, 8 Dec 2014 17:21:58 +0000 (12:21 -0500)]
selectors: Make sure EpollSelecrtor.select() works when no FD is registered.

Closes issue #23009.

10 years agofix reference by adding module name
Benjamin Peterson [Sun, 7 Dec 2014 22:26:38 +0000 (17:26 -0500)]
fix reference by adding module name

10 years agouse context's check_hostname attribute rather than the HTTPSHandler check_hostname...
Benjamin Peterson [Sun, 7 Dec 2014 18:46:02 +0000 (13:46 -0500)]
use context's check_hostname attribute rather than the HTTPSHandler check_hostname parameter

10 years agoHTTPSConnection: prefer the context's check_hostname attribute over the constructor...
Benjamin Peterson [Sun, 7 Dec 2014 18:18:25 +0000 (13:18 -0500)]
HTTPSConnection: prefer the context's check_hostname attribute over the constructor parameter (#22959)

10 years agonote that sslv3 may not be available
Benjamin Peterson [Sat, 6 Dec 2014 16:36:32 +0000 (11:36 -0500)]
note that sslv3 may not be available

10 years agoallow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)
Benjamin Peterson [Sat, 6 Dec 2014 02:59:35 +0000 (21:59 -0500)]
allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)

Patch by Kurt Roeckx.

10 years agoUpdate idlelib/NEWS.txt.
Terry Jan Reedy [Sat, 6 Dec 2014 01:49:32 +0000 (20:49 -0500)]
Update idlelib/NEWS.txt.

10 years agomerge 3.3 (#16043)
Benjamin Peterson [Sat, 6 Dec 2014 01:34:56 +0000 (20:34 -0500)]
merge 3.3 (#16043)

10 years agomerge 3.2 (#16043)
Benjamin Peterson [Sat, 6 Dec 2014 01:30:54 +0000 (20:30 -0500)]
merge 3.2 (#16043)

10 years agoIssue #16893: Update Idle doc chapter to match current Idle and add new
Terry Jan Reedy [Sat, 6 Dec 2014 01:25:30 +0000 (20:25 -0500)]
Issue #16893: Update Idle doc chapter to match current Idle and add new
information.

10 years agoadd a default limit for the amount of data xmlrpclib.gzip_decode will return (closes...
Benjamin Peterson [Sat, 6 Dec 2014 01:15:15 +0000 (20:15 -0500)]
add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043)

10 years agoFix a bad link
Brett Cannon [Fri, 5 Dec 2014 23:11:05 +0000 (18:11 -0500)]
Fix a bad link

10 years agoIssue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka [Fri, 5 Dec 2014 20:25:22 +0000 (22:25 +0200)]
Issue #22581: Use more "bytes-like object" throughout the docs and comments.

10 years agoIssue #22914: Update the Python 2/3 porting HOWTO to describe a more
Brett Cannon [Fri, 5 Dec 2014 15:56:12 +0000 (10:56 -0500)]
Issue #22914: Update the Python 2/3 porting HOWTO to describe a more
automated process.

10 years agoIssue #22599: Enhance tokenize.open() to be able to call it during Python
Victor Stinner [Fri, 5 Dec 2014 09:17:10 +0000 (10:17 +0100)]
Issue #22599: Enhance tokenize.open() to be able to call it during Python
finalization.

Before the module kept a reference to the builtins module, but the module
attributes are cleared during Python finalization. Instead, keep directly a
reference to the open() function.

This enhancement is not perfect, calling tokenize.open() can still fail if
called very late during Python finalization.  Usually, the function is called
by the linecache module which is called to display a traceback or emit a
warning.

10 years agoEdit Menus section of Idle doc. Make menu entries match current Idle in order
Terry Jan Reedy [Fri, 5 Dec 2014 07:43:07 +0000 (02:43 -0500)]
Edit Menus section of Idle doc.  Make menu entries match current Idle in order
and case.  Edit some of the explanatory sentences and end all with a period.

10 years agodocs.inspect: Fix BoundArguments example. Issue #22998.
Yury Selivanov [Fri, 5 Dec 2014 03:47:44 +0000 (22:47 -0500)]
docs.inspect: Fix BoundArguments example. Issue #22998.

10 years agoCloses #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the
Victor Stinner [Fri, 5 Dec 2014 00:44:10 +0000 (01:44 +0100)]
Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the
event loop if a BaseException is raised, because the event loop is already
stopped.

10 years agoIssue #22922: Fix ProactorEventLoop.close()
Victor Stinner [Fri, 5 Dec 2014 00:43:42 +0000 (01:43 +0100)]
Issue #22922: Fix ProactorEventLoop.close()

Call _stop_accept_futures() before sestting the _closed attribute, otherwise
call_soon() raises an error.

10 years agoCloses #22922: More EventLoop methods fail if the loop is closed. Initial patch
Victor Stinner [Thu, 4 Dec 2014 22:07:47 +0000 (23:07 +0100)]
Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch
written by Torsten Landschoff.

create_task(), call_at(), call_soon(), call_soon_threadsafe() and
run_in_executor() now raise an error if the event loop is closed.

10 years agoIssue #22685: Fix test_pause_reading() of asyncio test_subprocess
Victor Stinner [Thu, 4 Dec 2014 22:06:13 +0000 (23:06 +0100)]
Issue #22685: Fix test_pause_reading() of asyncio test_subprocess

* mock also resume_reading()
* ensure that resume_reading() is called

10 years agoasyncio: Initialize more Future and Task attributes in the class definition to
Victor Stinner [Thu, 4 Dec 2014 22:00:13 +0000 (23:00 +0100)]
asyncio: Initialize more Future and Task attributes in the class definition to
avoid attribute errors in destructors.

10 years agoIssue #3068: Document the new Configure Extensions dialog and menu entry.
Terry Jan Reedy [Thu, 4 Dec 2014 06:26:04 +0000 (01:26 -0500)]
Issue #3068: Document the new Configure Extensions dialog and menu entry.

10 years agoIssue #16893: For Idle doc, move index entries, copy no-subprocess section
Terry Jan Reedy [Thu, 4 Dec 2014 05:54:59 +0000 (00:54 -0500)]
Issue #16893: For Idle doc, move index entries, copy no-subprocess section
from idlelib/help.txt, add 'C' comment, and remove obsolete ^Z comment
Original patch by Zach Ware.

10 years agoFix #22987: update the compatibility matrix for a SSLv23 client.
Antoine Pitrou [Wed, 3 Dec 2014 19:00:56 +0000 (20:00 +0100)]
Fix #22987: update the compatibility matrix for a SSLv23 client.

10 years agoIssue #14099: ZipFile.open() no longer reopen the underlying file. Objects
Serhiy Storchaka [Wed, 3 Dec 2014 07:11:57 +0000 (09:11 +0200)]
Issue #14099: ZipFile.open() no longer reopen the underlying file.  Objects
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.

10 years agoCloses #22475: asyncio doc, fix Task.get_stack() doc
Victor Stinner [Tue, 2 Dec 2014 16:57:04 +0000 (17:57 +0100)]
Closes #22475: asyncio doc, fix Task.get_stack() doc

10 years agoClose #22473: asyncio doc: rephrase Future with run_forever() example
Victor Stinner [Tue, 2 Dec 2014 16:52:45 +0000 (17:52 +0100)]
Close #22473: asyncio doc: rephrase Future with run_forever() example

10 years agoFix the test to use an os.sep agnostic test. Hopefully this will fix the
Barry Warsaw [Tue, 2 Dec 2014 16:30:43 +0000 (11:30 -0500)]
Fix the test to use an os.sep agnostic test.  Hopefully this will fix the
Windows buildbots.  Found by Jeremy Kloth.

10 years agoIssue #20335: bytes constructor now raises TypeError when encoding or errors
Serhiy Storchaka [Tue, 2 Dec 2014 07:24:06 +0000 (09:24 +0200)]
Issue #20335: bytes constructor now raises TypeError when encoding or errors
is specified with non-string argument.  Based on patch by Renaud Blanch.

10 years agoMake this change a little more robust for up-merging.
Barry Warsaw [Mon, 1 Dec 2014 23:15:26 +0000 (18:15 -0500)]
Make this change a little more robust for up-merging.

10 years ago- Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is
Barry Warsaw [Mon, 1 Dec 2014 22:23:55 +0000 (17:23 -0500)]
- Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is
  asked to compile a source file containing multiple dots in the source file
  name.

10 years ago- Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is
Barry Warsaw [Mon, 1 Dec 2014 22:10:10 +0000 (17:10 -0500)]
- Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is
  asked to compile a source file containing multiple dots in the source file
  name.

10 years agoAdd NEWS items for Idle patches and a turtledemo patch.
Terry Jan Reedy [Mon, 1 Dec 2014 21:59:09 +0000 (16:59 -0500)]
Add NEWS items for Idle patches and a turtledemo patch.

10 years agoIssue #22975: Close block at right place.
Serhiy Storchaka [Mon, 1 Dec 2014 16:56:28 +0000 (18:56 +0200)]
Issue #22975: Close block at right place.

10 years agoRemoved duplicated words in in comments and docs.
Serhiy Storchaka [Mon, 1 Dec 2014 16:28:43 +0000 (18:28 +0200)]
Removed duplicated words in in comments and docs.

10 years agoIssue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
Serhiy Storchaka [Mon, 1 Dec 2014 11:07:45 +0000 (13:07 +0200)]
Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
Original patch by Martin Panter.

10 years agoIssue #22838: All test_re tests now work with unittest test discovery.
Serhiy Storchaka [Mon, 1 Dec 2014 09:06:45 +0000 (11:06 +0200)]
Issue #22838: All test_re tests now work with unittest test discovery.

10 years agoIssue #22924: Scripts gprof2html.py and highlight.py now use html.escape()
Serhiy Storchaka [Mon, 1 Dec 2014 08:50:33 +0000 (10:50 +0200)]
Issue #22924: Scripts gprof2html.py and highlight.py now use html.escape()
instead of deperecated cgi.escape().  Original patch by Raymond Hettinger.

10 years agobackout 9fcf4008b626 (#9179) for further consideration
Benjamin Peterson [Sun, 30 Nov 2014 16:49:00 +0000 (11:49 -0500)]
backout 9fcf4008b626 (#9179) for further consideration

10 years agocontext is keyword-only
Benjamin Peterson [Sun, 30 Nov 2014 04:38:17 +0000 (23:38 -0500)]
context is keyword-only

10 years agoadd context parameter to xmlrpclib.ServerProxy (#22960)
Benjamin Peterson [Sun, 30 Nov 2014 04:32:57 +0000 (23:32 -0500)]
add context parameter to xmlrpclib.ServerProxy (#22960)

Patch by Alex Gaynor.

10 years agoClose issue #22895: fix test failure introduced by the fix for issue #22462.
Antoine Pitrou [Sat, 29 Nov 2014 14:56:07 +0000 (15:56 +0100)]
Close issue #22895: fix test failure introduced by the fix for issue #22462.

10 years agoIssue #16113: Also remove test_case_sha3_224_huge
Ned Deily [Fri, 28 Nov 2014 23:21:12 +0000 (15:21 -0800)]
Issue #16113: Also remove test_case_sha3_224_huge

10 years agoIssue #22685: Debug test_pause_reading() on FreeBSD
Victor Stinner [Fri, 28 Nov 2014 17:02:03 +0000 (18:02 +0100)]
Issue #22685: Debug test_pause_reading() on FreeBSD