]>
granicus.if.org Git - python/log
Senthil Kumaran [Wed, 20 Mar 2013 01:01:43 +0000 (18:01 -0700)]
#17474 - Mark the deprecated Request methods as deprecated-removed. Review by Ezio Melotti
Senthil Kumaran [Tue, 19 Mar 2013 23:46:34 +0000 (16:46 -0700)]
#17471 - merge from 3.2
Kristján Valur Jónsson [Tue, 19 Mar 2013 23:34:39 +0000 (16:34 -0700)]
Merge with 3.2
Senthil Kumaran [Tue, 19 Mar 2013 23:11:07 +0000 (16:11 -0700)]
#17471 - Increasing the urllib.error test coverage. Bringing it to 100%. Based on patch contributed by Daniel Wozniak
Kristján Valur Jónsson [Tue, 19 Mar 2013 23:00:01 +0000 (16:00 -0700)]
Merge
Kristján Valur Jónsson [Tue, 19 Mar 2013 22:57:19 +0000 (15:57 -0700)]
Merge
Kristján Valur Jónsson [Tue, 19 Mar 2013 22:35:28 +0000 (15:35 -0700)]
#10296: Merge to 3.3
Gregory P. Smith [Tue, 19 Mar 2013 22:30:41 +0000 (15:30 -0700)]
merge from 3.2
Gregory P. Smith [Tue, 19 Mar 2013 22:25:46 +0000 (15:25 -0700)]
merge heads
Gregory P. Smith [Tue, 19 Mar 2013 22:25:28 +0000 (15:25 -0700)]
merge heads
Kristján Valur Jónsson [Tue, 19 Mar 2013 22:24:10 +0000 (15:24 -0700)]
Issue #10296 : Don't handle BreakPoint exceptions using
Structured Exception Handling on windows.
R David Murray [Tue, 19 Mar 2013 22:21:22 +0000 (18:21 -0400)]
Merge: #
1525919 : Document MIMEText+set_payload encoding behavior.
R David Murray [Tue, 19 Mar 2013 22:18:55 +0000 (18:18 -0400)]
#
1525919 : Document MIMEText+set_payload encoding behavior.
Gregory P. Smith [Tue, 19 Mar 2013 22:07:22 +0000 (15:07 -0700)]
merge heads
Gregory P. Smith [Tue, 19 Mar 2013 22:05:52 +0000 (15:05 -0700)]
merge heads in 3.3
doko@ubuntu.com [Tue, 19 Mar 2013 22:03:26 +0000 (15:03 -0700)]
- update config.guess and config.sub
Gregory P. Smith [Tue, 19 Mar 2013 22:03:26 +0000 (15:03 -0700)]
merge heads in 3.2
Gregory P. Smith [Tue, 19 Mar 2013 21:59:02 +0000 (14:59 -0700)]
Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This
specifically addresses a stack misalignment issue on x86 and issues
on some more recent platforms.
Senthil Kumaran [Tue, 19 Mar 2013 20:44:17 +0000 (13:44 -0700)]
#17471 - merge from 3.2
Senthil Kumaran [Tue, 19 Mar 2013 20:43:42 +0000 (13:43 -0700)]
#17471 - Improve urllib2 test coverage. Patch contributed by Daniel Wozniak
R David Murray [Tue, 19 Mar 2013 20:24:35 +0000 (16:24 -0400)]
Merge: #8862: Fix curses cleanup with getchar is interrupted by a signal.
I have no idea how one would write a test for this.
Patch by July Tikhonov.
R David Murray [Tue, 19 Mar 2013 20:23:09 +0000 (16:23 -0400)]
#8862: Fix curses cleanup with getchar is interrupted by a signal.
I have no idea how one would write a test for this.
Patch by July Tikhonov.
R David Murray [Tue, 19 Mar 2013 17:56:01 +0000 (13:56 -0400)]
Merge: #17443: Fix buffering in IMAP4_stream.
In Python2 Popen uses *FILE objects, which wind up buffering even though
subprocess defaults to no buffering. In Python3, subprocess streams really
are unbuffered by default, but the imaplib code assumes read is buffered. This
patch uses the default buffer size from the io module to get buffered streams
from Popen.
Much debugging work and patch by Diane Trout.
The imap protocol is too complicated to write a test for this simple
change with our current level of test infrastructure.
R David Murray [Tue, 19 Mar 2013 17:52:33 +0000 (13:52 -0400)]
#17443: Fix buffering in IMAP4_stream.
In Python2 Popen uses *FILE objects, which wind up buffering even though
subprocess defaults to no buffering. In Python3, subprocess streams really
are unbuffered by default, but the imaplib code assumes read is buffered. This
patch uses the default buffer size from the io module to get buffered streams
from Popen.
Much debugging work and patch by Diane Trout.
The imap protocol is too complicated to write a test for this simple
change with our current level of test infrastructure.
Serhiy Storchaka [Tue, 19 Mar 2013 11:27:05 +0000 (13:27 +0200)]
Fix usage of the unittest.skip decorator.
Serhiy Storchaka [Tue, 19 Mar 2013 11:25:20 +0000 (13:25 +0200)]
Fix usage of the unittest.skip decorator.
Senthil Kumaran [Tue, 19 Mar 2013 07:58:46 +0000 (00:58 -0700)]
#17460 - merge from 3.2
Senthil Kumaran [Tue, 19 Mar 2013 07:51:08 +0000 (00:51 -0700)]
#17460 - Adding relevant warning messages regarding strict removal in docs
R David Murray [Tue, 19 Mar 2013 06:32:35 +0000 (02:32 -0400)]
#17476: make allmethods actually return all methods.
This fixes a regression relative to Python2. (In 2, methods on a class were
unbound methods and matched the inspect queries being done, in 3 they are just
functions and so were missed).
This is an undocumented function that pydoc itself does not use, but
I found that numpy at least uses it in its documentation generator.
Original patch by Matt Bachmann.
R David Murray [Tue, 19 Mar 2013 06:31:06 +0000 (02:31 -0400)]
#17476: make allmethods actually return all methods.
This fixes a regression relative to Python2. (In 2, methods on a class were
unbound methods and matched the inspect queries being done, in 3 they are just
functions and so were missed).
This is an undocumented function that pydoc itself does not use, but
I found that numpy at least uses it in its documentation generator.
Original patch by Matt Bachmann.
Gregory P. Smith [Tue, 19 Mar 2013 00:11:20 +0000 (17:11 -0700)]
Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This
specifically addresses a stack misalignment issue on x86 and issues on
some more recent platforms.
Senthil Kumaran [Tue, 19 Mar 2013 00:09:50 +0000 (17:09 -0700)]
#10050 - Document DeprecationWarnings for URLopener and FancyURLopener (msg172874 )
Michael Foord [Mon, 18 Mar 2013 22:04:03 +0000 (15:04 -0700)]
Documentation corrections for unittest.mock
Andrew Svetlov [Mon, 18 Mar 2013 17:09:50 +0000 (10:09 -0700)]
Issue #17463: Fix test discovery for test_pdb.py
R David Murray [Mon, 18 Mar 2013 04:20:43 +0000 (00:20 -0400)]
Merge #17448: Make test_sax skip if there are no xml parsers.
Patch by Rafael Santos.
R David Murray [Mon, 18 Mar 2013 04:18:12 +0000 (00:18 -0400)]
#17448: Make test_sax skip if there are no xml parsers.
Patch by Rafael Santos.
R David Murray [Mon, 18 Mar 2013 01:53:23 +0000 (21:53 -0400)]
Merge #16057: Clarify why the base method default is called in custom encoders.
Original patch by Kushal Das.
R David Murray [Mon, 18 Mar 2013 01:52:35 +0000 (21:52 -0400)]
#16057: Clarify why the base method default is called in custom encoders.
Original patch by Kushal Das.
Brett Cannon [Sun, 17 Mar 2013 22:48:16 +0000 (15:48 -0700)]
Issue #16880: _imp.load_dynamic() is not defined on a platform that
does not support dynamic loading (e.g. Atari), so make sure that imp
doesn't assume it always exists.
Patch by Christian Heimes.
Terry Jan Reedy [Sun, 17 Mar 2013 19:28:52 +0000 (15:28 -0400)]
Merge with 3.2
Terry Jan Reedy [Sun, 17 Mar 2013 19:28:10 +0000 (15:28 -0400)]
Issue #17415: Trim trailing whitespace
Terry Jan Reedy [Sun, 17 Mar 2013 19:22:00 +0000 (15:22 -0400)]
Merge with 3.2
Terry Jan Reedy [Sun, 17 Mar 2013 19:21:26 +0000 (15:21 -0400)]
Issue #17415: Clarify 'this' referent by moving containing sentence just after
the sentence referred to. Make other minor edits to improve flow.
Serhiy Storchaka [Sat, 16 Mar 2013 20:59:59 +0000 (22:59 +0200)]
Issue #16389: Fixed an issue number in previos commit.
Serhiy Storchaka [Sat, 16 Mar 2013 20:59:27 +0000 (22:59 +0200)]
Issue #16389: Fixed an issue number in previos commit.
Serhiy Storchaka [Sat, 16 Mar 2013 20:53:48 +0000 (22:53 +0200)]
Issue #16564: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.
Serhiy Storchaka [Sat, 16 Mar 2013 20:52:09 +0000 (22:52 +0200)]
Issue #16564: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.
Serhiy Storchaka [Sat, 16 Mar 2013 20:50:13 +0000 (22:50 +0200)]
Null merge
Terry Jan Reedy [Sat, 16 Mar 2013 20:06:52 +0000 (16:06 -0400)]
Merge heads 3.3.
Terry Jan Reedy [Sat, 16 Mar 2013 20:05:27 +0000 (16:05 -0400)]
Merge heads 3.2.
Terry Jan Reedy [Sat, 16 Mar 2013 19:56:50 +0000 (15:56 -0400)]
Merge with 3.2
Terry Jan Reedy [Sat, 16 Mar 2013 19:56:27 +0000 (15:56 -0400)]
Issue #17418: specify that buffer sizes are bytes as soon as possible.
Ezio Melotti [Sat, 16 Mar 2013 19:49:20 +0000 (21:49 +0200)]
#11420: merge with 3.2.
Ezio Melotti [Sat, 16 Mar 2013 17:48:51 +0000 (19:48 +0200)]
#11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters.
Georg Brandl [Sat, 16 Mar 2013 07:03:13 +0000 (08:03 +0100)]
merge heads
Georg Brandl [Sat, 16 Mar 2013 07:01:49 +0000 (08:01 +0100)]
Remove row-spanning cell, which the Sphinx text writer does not support.
Terry Jan Reedy [Sat, 16 Mar 2013 06:58:15 +0000 (02:58 -0400)]
#12345: null merge with 3.2.
Terry Jan Reedy [Sat, 16 Mar 2013 06:53:09 +0000 (02:53 -0400)]
typo
Terry Jan Reedy [Sat, 16 Mar 2013 06:51:18 +0000 (02:51 -0400)]
Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware.
Terry Jan Reedy [Sat, 16 Mar 2013 06:37:06 +0000 (02:37 -0400)]
Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware.
R David Murray [Sat, 16 Mar 2013 00:42:29 +0000 (20:42 -0400)]
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
R David Murray [Sat, 16 Mar 2013 00:38:15 +0000 (20:38 -0400)]
#17431: Fix missing import of BytesFeedParser in email.parser.
Initial patch contributed by Edmond Burnett.
Terry Jan Reedy [Fri, 15 Mar 2013 20:50:54 +0000 (16:50 -0400)]
Merge with 3.2
Terry Jan Reedy [Fri, 15 Mar 2013 20:50:23 +0000 (16:50 -0400)]
Issue #17398: document url argument of RobotFileParser
Terry Jan Reedy [Fri, 15 Mar 2013 07:39:38 +0000 (03:39 -0400)]
Merge with 3.2: issue #17047 news entry
Terry Jan Reedy [Fri, 15 Mar 2013 07:33:11 +0000 (03:33 -0400)]
Issue #17047: Add news entry
Serhiy Storchaka [Thu, 14 Mar 2013 19:33:35 +0000 (21:33 +0200)]
Issue #
1285086 : Get rid of the refcounting hack and speed up
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
Serhiy Storchaka [Thu, 14 Mar 2013 19:31:37 +0000 (21:31 +0200)]
Issue #
1285086 : Get rid of the refcounting hack and speed up
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
Terry Jan Reedy [Thu, 14 Mar 2013 01:35:07 +0000 (21:35 -0400)]
Merge with 3.2: Issue #17386
Terry Jan Reedy [Thu, 14 Mar 2013 01:33:50 +0000 (21:33 -0400)]
Issue #17386 make.bat must run with Python 2 until Sphinx runs with Python 3.
If PYTHON is undefined, this fails without the launcher (installed with 3.3 or
from PyPI), but this is better than always failing. Patch from Zachary Ware.
Senthil Kumaran [Wed, 13 Mar 2013 20:42:47 +0000 (13:42 -0700)]
#17307 - merge from 3.2
Senthil Kumaran [Wed, 13 Mar 2013 20:38:33 +0000 (13:38 -0700)]
#17307 - Example of HTTP PUT Request using http.client
Brett Cannon [Wed, 13 Mar 2013 17:58:50 +0000 (10:58 -0700)]
Issue #17176: Document that imp.NullImporter is no longer
automatically used by import.
Ezio Melotti [Wed, 13 Mar 2013 00:27:35 +0000 (02:27 +0200)]
#17402: merge with 3.2.
Ezio Melotti [Wed, 13 Mar 2013 00:27:00 +0000 (02:27 +0200)]
#17402: avoid shadowing built-in map in mmap examples. Initial patch by Aman Shah.
Ezio Melotti [Tue, 12 Mar 2013 23:53:38 +0000 (01:53 +0200)]
#17368: merge with 3.2.
Ezio Melotti [Tue, 12 Mar 2013 23:52:34 +0000 (01:52 +0200)]
#17368: Fix an off-by-one error in the Python JSON decoder that caused a failure while decoding empty object literals when object_pairs_hook was specified.
Eli Bendersky [Tue, 12 Mar 2013 13:04:33 +0000 (06:04 -0700)]
Issue #11367: fix documentation of some find* methods in ElementTree
Eli Bendersky [Tue, 12 Mar 2013 13:01:22 +0000 (06:01 -0700)]
Issue #11367: fix documentation of some find* methods in ElementTree
Ezio Melotti [Tue, 12 Mar 2013 05:49:12 +0000 (07:49 +0200)]
#17066: test_robotparser now works with unittest test discovery. Patch by Zachary Ware.
Terry Jan Reedy [Mon, 11 Mar 2013 22:34:00 +0000 (18:34 -0400)]
Issue #17047: remove doubled words added in 3.3
as reported by Serhiy Storchaka and Matthew Barnett.
Terry Jan Reedy [Mon, 11 Mar 2013 21:58:27 +0000 (17:58 -0400)]
Merge 3.2, issue #17047: remove doubled words found in 2.7 to
3.4 Lib/*, as reported by Serhiy Storchaka and Matthew Barnett.
Terry Jan Reedy [Mon, 11 Mar 2013 21:57:08 +0000 (17:57 -0400)]
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Terry Jan Reedy [Mon, 11 Mar 2013 21:45:12 +0000 (17:45 -0400)]
Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4
Modules/*, as reported by Serhiy Storchaka and Matthew Barnett.
Terry Jan Reedy [Mon, 11 Mar 2013 21:42:46 +0000 (17:42 -0400)]
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Terry Jan Reedy [Mon, 11 Mar 2013 21:26:33 +0000 (17:26 -0400)]
Merge with 3.2: Issue #17047: removed doubled words in Doc/*,
Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
Terry Jan Reedy [Mon, 11 Mar 2013 21:23:46 +0000 (17:23 -0400)]
Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*
found by Serhiy Storchaka and Matthew Barnett
Ezio Melotti [Mon, 11 Mar 2013 07:42:40 +0000 (09:42 +0200)]
#17351: merge with 3.2.
Ezio Melotti [Mon, 11 Mar 2013 07:30:21 +0000 (09:30 +0200)]
#17351: remove "object" inheritance from docs. Patch by Phil Elson.
Ezio Melotti [Mon, 11 Mar 2013 03:59:55 +0000 (05:59 +0200)]
#11963: merge with 3.2.
Ezio Melotti [Mon, 11 Mar 2013 03:53:34 +0000 (05:53 +0200)]
#11963: remove human verification from test_parser and test_subprocess.
Raymond Hettinger [Sun, 10 Mar 2013 16:50:37 +0000 (09:50 -0700)]
Inherit from object() for consistency
Raymond Hettinger [Sun, 10 Mar 2013 16:41:18 +0000 (09:41 -0700)]
Issue #17351: Modernize the pure Python property() example.
Ezio Melotti [Sun, 10 Mar 2013 01:27:26 +0000 (03:27 +0200)]
#11963: merge with 3.2.
Ezio Melotti [Sun, 10 Mar 2013 01:25:45 +0000 (03:25 +0200)]
#11963: fix Windows buildbots.
Ezio Melotti [Sat, 9 Mar 2013 20:20:23 +0000 (22:20 +0200)]
#11963: merge with 3.2.
Ezio Melotti [Sat, 9 Mar 2013 20:17:33 +0000 (22:17 +0200)]
#11963: avoid printing messages in test_parser. Initial patch by Éric Araujo.
Brett Cannon [Sat, 9 Mar 2013 19:22:35 +0000 (14:22 -0500)]
Touch up the Python 2 to 3 porting guide
Eli Bendersky [Sat, 9 Mar 2013 13:54:32 +0000 (05:54 -0800)]
Add warning in ctypes documentation for #16575 and #16576
Eli Bendersky [Sat, 9 Mar 2013 13:54:00 +0000 (05:54 -0800)]
Add warning in ctypes documentation for #16575 and #16576