]> granicus.if.org Git - python/log
python
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

10 years agoCloses #22348: Rephrase asyncio.StreamWriter.drain() documentation
Victor Stinner [Fri, 28 Nov 2014 16:45:41 +0000 (17:45 +0100)]
Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation
Patch written by Martin Richard.

10 years agoasyncio doc: reformat event loop policy doc
Victor Stinner [Fri, 28 Nov 2014 12:58:28 +0000 (13:58 +0100)]
asyncio doc: reformat event loop policy doc

10 years agoasyncio doc: explain how to pass keywords to callbacks (functools.partial)
Victor Stinner [Fri, 28 Nov 2014 12:15:41 +0000 (13:15 +0100)]
asyncio doc: explain how to pass keywords to callbacks (functools.partial)

10 years agogive a nice message when installer is launched w/o admin rights (closes #16561)
Benjamin Peterson [Fri, 28 Nov 2014 02:39:02 +0000 (20:39 -0600)]
give a nice message when installer is launched w/o admin rights (closes #16561)

10 years agoIssue #21280: Fixed a bug in shutil.make_archive() when create an archive of
Serhiy Storchaka [Thu, 27 Nov 2014 22:48:46 +0000 (00:48 +0200)]
Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of
current directory in current directory.

10 years agoIssue #22314: pydoc now works when the LINES environment variable is set.
Serhiy Storchaka [Thu, 27 Nov 2014 22:09:29 +0000 (00:09 +0200)]
Issue #22314: pydoc now works when the LINES environment variable is set.

10 years agoIssue #22915: SAX parser now supports files opened with file descriptor or
Serhiy Storchaka [Thu, 27 Nov 2014 20:13:16 +0000 (22:13 +0200)]
Issue #22915: SAX parser now supports files opened with file descriptor or
bytes path.

10 years agoIssue #21514: The documentation of the json module now refers to new JSON RFC
Serhiy Storchaka [Thu, 27 Nov 2014 17:41:47 +0000 (19:41 +0200)]
Issue #21514: The documentation of the json module now refers to new JSON RFC
7159 instead of obsoleted RFC 4627.

10 years agoIssue #22609: Revert changes in UserDict. They conflicted with existing tests.
Serhiy Storchaka [Thu, 27 Nov 2014 15:45:44 +0000 (17:45 +0200)]
Issue #22609: Revert changes in UserDict. They conflicted with existing tests.

10 years agoIssue #22609: Constructors and update methods of mapping classes in the
Serhiy Storchaka [Thu, 27 Nov 2014 14:25:51 +0000 (16:25 +0200)]
Issue #22609: Constructors and update methods of mapping classes in the
collections module now accept the self keyword argument.

10 years agopydoc: Add a note about setting PAGER to affect console output pagination.
Zachary Ware [Thu, 27 Nov 2014 05:44:25 +0000 (23:44 -0600)]
pydoc: Add a note about setting PAGER to affect console output pagination.

Suggested by James Lowden on docs@.

10 years ago(3.4) Issue22780: reword NotImplemented docs to emphasise should
Ethan Furman [Thu, 27 Nov 2014 05:15:35 +0000 (21:15 -0800)]
(3.4) Issue22780: reword NotImplemented docs to emphasise should

10 years agoremove tautological condition (closes #22954)
Benjamin Peterson [Thu, 27 Nov 2014 05:03:11 +0000 (23:03 -0600)]
remove tautological condition (closes #22954)

10 years agopydoc: Remove mention of '-g' command line option, document its removal.
Zachary Ware [Thu, 27 Nov 2014 04:57:35 +0000 (22:57 -0600)]
pydoc: Remove mention of '-g' command line option, document its removal.

10 years agouse skipUnless
Benjamin Peterson [Wed, 26 Nov 2014 20:35:56 +0000 (14:35 -0600)]
use skipUnless

10 years agohandle errors without a reason attribute
Benjamin Peterson [Tue, 25 Nov 2014 21:43:58 +0000 (15:43 -0600)]
handle errors without a reason attribute

10 years agodon't fail tests when www.python.org can't be validated by the system
Benjamin Peterson [Tue, 25 Nov 2014 21:16:55 +0000 (15:16 -0600)]
don't fail tests when www.python.org can't be validated by the system

10 years agoCloses #22685, asyncio: Set the transport of stdout and stderr StreamReader
Victor Stinner [Tue, 25 Nov 2014 16:20:33 +0000 (17:20 +0100)]
Closes #22685, asyncio: Set the transport of stdout and stderr StreamReader
objects in the SubprocessStreamProtocol. It allows to pause the transport to
not buffer too much stdout or stderr data.

10 years agoIssue #20351: Add examples for csv.DictReader and csv.DictWriter.
Berker Peksag [Mon, 24 Nov 2014 21:46:30 +0000 (23:46 +0200)]
Issue #20351: Add examples for csv.DictReader and csv.DictWriter.

Patch by Charles-Axel Dein.

10 years agoadd context parameter to HTTPHandler (closes #22788)
Benjamin Peterson [Mon, 24 Nov 2014 02:36:44 +0000 (20:36 -0600)]
add context parameter to HTTPHandler (closes #22788)

10 years agoadd NEWS note for #22921
Benjamin Peterson [Mon, 24 Nov 2014 02:15:31 +0000 (20:15 -0600)]
add NEWS note for #22921

10 years agocorrect versionchanged version
Benjamin Peterson [Mon, 24 Nov 2014 02:09:31 +0000 (20:09 -0600)]
correct versionchanged version

10 years agodon't require OpenSSL SNI to pass hostname to ssl functions (#22921)
Benjamin Peterson [Sun, 23 Nov 2014 23:04:34 +0000 (17:04 -0600)]
don't require OpenSSL SNI to pass hostname to ssl functions (#22921)

Patch by Donald Stufft.

10 years agodocument that cadefault does nothing now
Benjamin Peterson [Sun, 23 Nov 2014 17:43:33 +0000 (11:43 -0600)]
document that cadefault does nothing now

10 years agoIssue #22894: TestCase.subTest() would cause the test suite to be stopped when in...
Antoine Pitrou [Sun, 23 Nov 2014 14:55:11 +0000 (15:55 +0100)]
Issue #22894: TestCase.subTest() would cause the test suite to be stopped when in failfast mode, even in the absence of failures.

10 years agomerge 3.2
Benjamin Peterson [Wed, 5 Nov 2014 16:29:39 +0000 (11:29 -0500)]
merge 3.2

10 years agouse pythontest.net for url fragment test
Benjamin Peterson [Wed, 5 Nov 2014 16:27:14 +0000 (11:27 -0500)]
use pythontest.net for url fragment test

10 years agomerge 3.2
Benjamin Peterson [Mon, 3 Nov 2014 20:11:53 +0000 (15:11 -0500)]
merge 3.2

10 years agomove idna test domain to pythontest.net
Benjamin Peterson [Mon, 3 Nov 2014 20:10:47 +0000 (15:10 -0500)]
move idna test domain to pythontest.net

10 years agomake plural s lowercase
Benjamin Peterson [Sun, 19 Oct 2014 14:47:49 +0000 (10:47 -0400)]
make plural s lowercase

10 years agoIssue #22638: SSLv3 is now disabled throughout the standard library.
Antoine Pitrou [Fri, 17 Oct 2014 17:28:30 +0000 (19:28 +0200)]
Issue #22638: SSLv3 is now disabled throughout the standard library.
It can still be enabled by instantiating a SSLContext manually.

10 years agoAdd downloads page link to OS X installer README screens.
Ned Deily [Sat, 22 Nov 2014 22:20:30 +0000 (14:20 -0800)]
Add downloads page link to OS X installer README screens.

10 years agoIssue #17293: socket.gethostbyname() can raise an exception of FreeBSD.
Serhiy Storchaka [Fri, 21 Nov 2014 19:55:39 +0000 (21:55 +0200)]
Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD.

10 years agoasyncio: BaseSelectorEventLoop.close() now closes the self-pipe before calling
Victor Stinner [Thu, 20 Nov 2014 23:23:27 +0000 (00:23 +0100)]
asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before calling
the parent close() method. If the event loop is already closed, the self-pipe
is not unregistered from the selector.

10 years agoasyncio: Coroutine objects are now rejected with a TypeError by the following
Victor Stinner [Thu, 20 Nov 2014 14:03:52 +0000 (15:03 +0100)]
asyncio: Coroutine objects are now rejected with a TypeError by the following
functions:

* add_signal_handler()
* call_at()
* call_later()
* call_soon()
* call_soon_threadsafe()
* run_in_executor()

Fix also the error message of add_signal_handler() (fix the name of the
function).

10 years agoasyncio, test_events: Ignore the "SSL handshake failed" log in debug mode
Victor Stinner [Thu, 20 Nov 2014 13:19:23 +0000 (14:19 +0100)]
asyncio, test_events: Ignore the "SSL handshake failed" log in debug mode

10 years agoasyncio: Fix formatting of the "Future exception was never retrieved" in
Victor Stinner [Thu, 20 Nov 2014 13:16:31 +0000 (14:16 +0100)]
asyncio: Fix formatting of the "Future exception was never retrieved" in
release mode

10 years agoIssue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Serhiy Storchaka [Wed, 19 Nov 2014 11:21:13 +0000 (13:21 +0200)]
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.

10 years agoIssue #20604: Added missed invalid mode in error message of socket.makefile().
Serhiy Storchaka [Wed, 19 Nov 2014 10:33:40 +0000 (12:33 +0200)]
Issue #20604: Added missed invalid mode in error message of socket.makefile().
Based on patch by Franck Michea.

10 years agoClose #22370: Windows detection in pathlib is now more robust.
Antoine Pitrou [Tue, 18 Nov 2014 23:32:08 +0000 (00:32 +0100)]
Close #22370: Windows detection in pathlib is now more robust.

10 years agoIssue #22453: Warn against the use of leaking macro PyObject_REPR().
Serhiy Storchaka [Tue, 18 Nov 2014 22:08:38 +0000 (00:08 +0200)]
Issue #22453: Warn against the use of leaking macro PyObject_REPR().

10 years agoIssue #18637: Fixed an error in _PyNode_SizeOf declaration.
Serhiy Storchaka [Tue, 18 Nov 2014 15:30:15 +0000 (17:30 +0200)]
Issue #18637: Fixed an error in _PyNode_SizeOf declaration.
Patch by Roumen Petrov.

10 years agoIssue #20662: Argspec now is escaped in html output of pydoc.
Serhiy Storchaka [Mon, 17 Nov 2014 21:48:02 +0000 (23:48 +0200)]
Issue #20662: Argspec now is escaped in html output of pydoc.

10 years agoIssue #22193: Fixed integer overflow error in sys.getsizeof().
Serhiy Storchaka [Sat, 15 Nov 2014 11:21:37 +0000 (13:21 +0200)]
Issue #22193: Fixed integer overflow error in sys.getsizeof().
Fixed an error in _PySys_GetSizeOf declaration.

10 years agoIssue #22877: PEP 477 - keep 2.7 and 3.x installers in sync.
Ned Deily [Sat, 15 Nov 2014 02:55:05 +0000 (18:55 -0800)]
Issue #22877: PEP 477 - keep 2.7 and 3.x installers in sync.

10 years ago- Issue #22841: Reject coroutines in asyncio add_signal_handler().
Guido van Rossum [Fri, 14 Nov 2014 19:45:47 +0000 (11:45 -0800)]
- Issue #22841: Reject coroutines in asyncio add_signal_handler().
  Patch by Ludovic.Gasc.

10 years agofix possible double free in TextIOWrapper.__init__ (closes #22849)
Benjamin Peterson [Wed, 12 Nov 2014 15:19:46 +0000 (10:19 -0500)]
fix possible double free in TextIOWrapper.__init__ (closes #22849)

10 years agoUpgrade setuptools to 7.0
Donald Stufft [Tue, 11 Nov 2014 16:01:09 +0000 (11:01 -0500)]
Upgrade setuptools to 7.0

10 years agoIssue #22845: Improved formatting of dis documentation.
Serhiy Storchaka [Tue, 11 Nov 2014 08:02:11 +0000 (10:02 +0200)]
Issue #22845: Improved formatting of dis documentation.

10 years agoIssue #22839: Fix Snapshot.statistics() link.
Berker Peksag [Mon, 10 Nov 2014 21:15:32 +0000 (23:15 +0200)]
Issue #22839: Fix Snapshot.statistics() link.

10 years agoGot rid of the array module dependency in the re module.
Serhiy Storchaka [Mon, 10 Nov 2014 11:24:47 +0000 (13:24 +0200)]
Got rid of the array module dependency in the re module.
The re module could be used during building before array is built.

10 years agoIssue #12728: Different Unicode characters having the same uppercase but
Serhiy Storchaka [Mon, 10 Nov 2014 10:37:16 +0000 (12:37 +0200)]
Issue #12728: Different Unicode characters having the same uppercase but
different lowercase are now matched in case-insensitive regular expressions.