]>
granicus.if.org Git - python/log
R David Murray [Sat, 4 Jan 2014 23:07:20 +0000 (18:07 -0500)]
whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup.
And more news entry clarifications.
R David Murray [Sat, 4 Jan 2014 22:11:23 +0000 (17:11 -0500)]
whatsnew: ppring string wrapping, string pickling optimization.
Also clarify some NEWS entries.
R David Murray [Sat, 4 Jan 2014 04:31:54 +0000 (23:31 -0500)]
whatsnew: Mock mock_open readline(s); expand description of subtests feature.
Eric Snow [Sat, 4 Jan 2014 22:09:53 +0000 (15:09 -0700)]
Issue #19708: Update pkgutil to use the new importer APIs.
Eric Snow [Sat, 4 Jan 2014 22:09:28 +0000 (15:09 -0700)]
Issue #19713: Move away from using find_module/load_module.
Eric Snow [Sat, 4 Jan 2014 22:06:49 +0000 (15:06 -0700)]
Issue #19927: Add __eq__ to path-based loaders in importlib.
Serhiy Storchaka [Sat, 4 Jan 2014 20:49:40 +0000 (22:49 +0200)]
Merge heads
Larry Hastings [Sat, 4 Jan 2014 20:44:57 +0000 (12:44 -0800)]
Issue #19659: Added documentation for Argument Clinic.
Serhiy Storchaka [Sat, 4 Jan 2014 20:44:01 +0000 (22:44 +0200)]
Reverted changeset
b72c5573c5e7 (issue #15027).
Larry Hastings [Sat, 4 Jan 2014 19:09:09 +0000 (11:09 -0800)]
Issue #19976: Argument Clinic METH_NOARGS functions now always
take two parameters.
Serhiy Storchaka [Sat, 4 Jan 2014 17:25:37 +0000 (19:25 +0200)]
Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.
Stefan Krah [Sat, 4 Jan 2014 12:06:59 +0000 (13:06 +0100)]
Merge from 3.3.
Stefan Krah [Sat, 4 Jan 2014 12:03:48 +0000 (13:03 +0100)]
Whitespace.
Martin v. Löwis [Sat, 4 Jan 2014 10:25:35 +0000 (11:25 +0100)]
Drop reference to pythoncore, to avoid linking python34.dll
Martin v. Löwis [Sat, 4 Jan 2014 10:21:15 +0000 (11:21 +0100)]
Merge 3.3
Martin v. Löwis [Sat, 4 Jan 2014 10:20:45 +0000 (11:20 +0100)]
Regenerate python34stub.def.
Martin v. Löwis [Sat, 4 Jan 2014 09:06:28 +0000 (10:06 +0100)]
Merge with 3.3: Issue #17432: Drop UCS2 from names of Unicode functions in python3.def.
Martin v. Löwis [Sat, 4 Jan 2014 09:01:42 +0000 (10:01 +0100)]
Issue #17432: Drop UCS2 from names of Unicode functions in python3.def.
R David Murray [Fri, 3 Jan 2014 21:15:45 +0000 (16:15 -0500)]
whatsnew: consistently use 3 blanks between major sections. 2 for minor.
R David Murray [Fri, 3 Jan 2014 20:52:22 +0000 (15:52 -0500)]
whatsnew: make bullet list presentation style consistent.
R David Murray [Fri, 3 Jan 2014 20:46:24 +0000 (15:46 -0500)]
whatsnew: unittest discovery sorting, urlllib Request getter/setter removals.
Martin v. Löwis [Fri, 3 Jan 2014 20:36:49 +0000 (21:36 +0100)]
Issue #19526: Exclude all new API from the stable ABI.
R David Murray [Fri, 3 Jan 2014 19:06:01 +0000 (14:06 -0500)]
whatsnew: porting note for HTTP[S]Connection strict parameter removal.
It was discussed in issue #17460 whether or not to make the remaining
arguments keyword only so that things would fail noisily if someone was still
using positional parameters, but no decision was made and we are now well past
the Beta API change deadline.
R David Murray [Fri, 3 Jan 2014 18:04:25 +0000 (13:04 -0500)]
whatsnew: deprecation of HTTPConnection's strict parameter.
R David Murray [Fri, 3 Jan 2014 18:03:36 +0000 (13:03 -0500)]
whatsnew: unittest import time SkipTest reported as skip not error.
R David Murray [Fri, 3 Jan 2014 18:03:00 +0000 (13:03 -0500)]
whatsnew: http.server send_error explain parameter.
Also rewrote the send_error description for clarity and correct English.
Victor Stinner [Fri, 3 Jan 2014 16:42:18 +0000 (17:42 +0100)]
Remove deadcode (HASH macro is no more defined)
Victor Stinner [Fri, 3 Jan 2014 16:39:40 +0000 (17:39 +0100)]
Remove now unused variables
Martin v. Löwis [Fri, 3 Jan 2014 14:53:20 +0000 (15:53 +0100)]
Revert accidental deletion of _overlapped.
Martin v. Löwis [Fri, 3 Jan 2014 13:05:06 +0000 (14:05 +0100)]
* Issue #16113: Remove sha3 module again.
Patch by Christian Heimes, with modifications.
Victor Stinner [Fri, 3 Jan 2014 12:16:00 +0000 (13:16 +0100)]
unicode_char() uses get_latin1_char() to get latin1 singleton characters
Victor Stinner [Fri, 3 Jan 2014 11:53:47 +0000 (12:53 +0100)]
add unicode_char() in unicodeobject.c to factorize code
Victor Stinner [Fri, 3 Jan 2014 11:26:12 +0000 (12:26 +0100)]
Issue #18294: Fix uint_converter() in zlibmodule.c, fix the "> UINT_MAX" check
Eric Snow [Fri, 3 Jan 2014 05:25:00 +0000 (22:25 -0700)]
Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder.
Daniel Holth [Fri, 3 Jan 2014 04:17:21 +0000 (23:17 -0500)]
Issue #18585: speed zipfile import by only generating zipfile._ZipDecryptor on demand
Victor Stinner [Fri, 3 Jan 2014 02:26:47 +0000 (03:26 +0100)]
audioop: adpcm2lin() and lin2adpcm() now raises a TypeError instead of a
SystemError if the state type is invalid.
Benjamin Peterson [Thu, 2 Jan 2014 22:47:50 +0000 (16:47 -0600)]
correct word for __annotations__ doc (closes #20110)
Patch from Claudiu Popa.
R David Murray [Thu, 2 Jan 2014 18:37:26 +0000 (13:37 -0500)]
#17282: Document unittest.main defaultTest argument.
Benjamin Peterson [Thu, 2 Jan 2014 18:24:08 +0000 (12:24 -0600)]
avoid parameter name clash (closes #20108)
Benjamin Peterson [Thu, 2 Jan 2014 18:22:30 +0000 (12:22 -0600)]
remove brackets
Victor Stinner [Thu, 2 Jan 2014 17:41:34 +0000 (18:41 +0100)]
asyncio: make PY34 symbol private (rename it to _PY34)
Antoine Pitrou [Thu, 2 Jan 2014 23:07:17 +0000 (00:07 +0100)]
Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix.
Benjamin Peterson [Thu, 2 Jan 2014 22:48:24 +0000 (16:48 -0600)]
merge 3.3 (#20110)
R David Murray [Thu, 2 Jan 2014 18:44:18 +0000 (13:44 -0500)]
whatsnew: sqlite3 uri parm, unittest.main defaultTest, ftplib.Netrc deprecation
R David Murray [Thu, 2 Jan 2014 18:43:02 +0000 (13:43 -0500)]
Merge and update #17282: Document unittest.main defaultTest argument.
In 3.4 defaultTest can also be a list (see issue 15132).
Benjamin Peterson [Thu, 2 Jan 2014 18:26:50 +0000 (12:26 -0600)]
merge 3.3 (closes #20108)
Zachary Ware [Thu, 2 Jan 2014 15:43:09 +0000 (09:43 -0600)]
Issue #20101: Merge with 3.3
Zachary Ware [Thu, 2 Jan 2014 15:41:10 +0000 (09:41 -0600)]
Issue #20101: Allow test_monotonic to pass on Windows machines on which
time.get_clock_info('monotonic').resolution == 0.
015600099999999999
This is just a workaround pending a real resolution to #20101.
Donald Stufft [Thu, 2 Jan 2014 14:33:35 +0000 (09:33 -0500)]
Update pip to the released 1.5
Martin v. Löwis [Thu, 2 Jan 2014 13:12:30 +0000 (14:12 +0100)]
Issue #19728: Enable pip installation by default on Windows.
Victor Stinner [Thu, 2 Jan 2014 11:53:50 +0000 (12:53 +0100)]
(Merge 3.3) Issue #18829: Add tests for the csv module for invalid characters
(delimiter, escapechar, quotechar)
Victor Stinner [Thu, 2 Jan 2014 11:53:13 +0000 (12:53 +0100)]
Issue #18829: Add tests for the csv module for invalid characters (delimiter,
escapechar, quotechar)
Victor Stinner [Thu, 2 Jan 2014 11:47:24 +0000 (12:47 +0100)]
threading.RLock._acquire_restore() now raises a TypeError instead of a
SystemError when it is not called with 2 arguments
Victor Stinner [Thu, 2 Jan 2014 10:50:10 +0000 (11:50 +0100)]
(Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser error
Fix typo: "os" format => "Os"
Victor Stinner [Thu, 2 Jan 2014 10:49:27 +0000 (11:49 +0100)]
parser: fix usage of Py_BuildValue() to build a parser error
Fix typo: "os" format => "Os"
Ned Deily [Wed, 1 Jan 2014 21:06:02 +0000 (13:06 -0800)]
Update copyright dates in Mac plists.
Ned Deily [Wed, 1 Jan 2014 21:05:03 +0000 (13:05 -0800)]
Update copyright dates in Mac plists.
Benjamin Peterson [Wed, 1 Jan 2014 04:02:41 +0000 (22:02 -0600)]
merge 3.3
Benjamin Peterson [Wed, 1 Jan 2014 04:02:22 +0000 (22:02 -0600)]
update copyright year
Antoine Pitrou [Wed, 1 Jan 2014 01:51:58 +0000 (02:51 +0100)]
Issue #20055: Fix test_shutil under Windows with symlink privileges held.
Patch by Vajrasky Kok.
Antoine Pitrou [Wed, 1 Jan 2014 01:50:45 +0000 (02:50 +0100)]
Issue #20055: Fix test_shutil under Windows with symlink privileges held.
Patch by Vajrasky Kok.
R David Murray [Tue, 31 Dec 2013 22:34:40 +0000 (17:34 -0500)]
Merge: Clarify the wording of a news entry.
R David Murray [Tue, 31 Dec 2013 22:33:47 +0000 (17:33 -0500)]
Clarify the wording of a news entry.
R David Murray [Tue, 31 Dec 2013 21:04:50 +0000 (16:04 -0500)]
whatsnew: mock called_with improvements, socket CAN_BCM support.
Also reworded the other entries in the socket section of whatsnew, as
well as a couple of unrelated news entries.
R David Murray [Tue, 31 Dec 2013 20:06:05 +0000 (15:06 -0500)]
whatsnew: random.getrandbits performance.
Also fix a NEWS file issue number error, and some spacing fixes in whatsnew.
R David Murray [Tue, 31 Dec 2013 18:45:38 +0000 (13:45 -0500)]
whatsnew: afic.open supports 'with'.
Zachary Ware [Tue, 31 Dec 2013 18:10:24 +0000 (12:10 -0600)]
Merge with 3.3
Zachary Ware [Tue, 31 Dec 2013 18:09:26 +0000 (12:09 -0600)]
str subclasses may have non-empty __slots__, bytes subclasses can't.
R David Murray [Tue, 31 Dec 2013 16:18:01 +0000 (11:18 -0500)]
whatsnew: argparse FileType accepts errors and encodings args.
R David Murray [Tue, 31 Dec 2013 16:17:21 +0000 (11:17 -0500)]
whatsnew: epoll supports with.
Also reworded the description of the feature in the docs.
Donald Stufft [Tue, 31 Dec 2013 11:52:47 +0000 (06:52 -0500)]
Update setuptools to 2.0.2
Donald Stufft [Tue, 31 Dec 2013 11:49:54 +0000 (06:49 -0500)]
Update pip to 1.5rc4
Zachary Ware [Mon, 30 Dec 2013 21:09:20 +0000 (15:09 -0600)]
Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound)
Zachary Ware [Mon, 30 Dec 2013 20:54:11 +0000 (14:54 -0600)]
Issue19619: skip zlib error test when zlib not available
Zachary Ware [Mon, 30 Dec 2013 20:39:46 +0000 (14:39 -0600)]
Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound)
Christian Heimes [Mon, 30 Dec 2013 08:33:46 +0000 (09:33 +0100)]
Fixed typo (thx Arfrever)
Michael Foord [Sun, 29 Dec 2013 23:38:55 +0000 (23:38 +0000)]
Closes issue 20031. Document unittest.TextTestRunner.run method.
R David Murray [Sun, 29 Dec 2013 04:15:12 +0000 (23:15 -0500)]
whatsnew: abc.ABC. Also add issue number to news entry and reword.
Senthil Kumaran [Sun, 29 Dec 2013 01:36:18 +0000 (17:36 -0800)]
Backporing the fix from Issue #12692
Antoine Pitrou [Sat, 28 Dec 2013 16:26:33 +0000 (17:26 +0100)]
Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data.
R David Murray [Fri, 27 Dec 2013 22:08:18 +0000 (17:08 -0500)]
Add context to a json NEWS entry.
Senthil Kumaran [Sun, 29 Dec 2013 01:37:38 +0000 (17:37 -0800)]
#12692: null merge with 3.3
Antoine Pitrou [Sat, 28 Dec 2013 19:37:58 +0000 (20:37 +0100)]
Fix breakage in TestSuite.countTestCases() introduced by issue #11798.
Antoine Pitrou [Sat, 28 Dec 2013 18:49:04 +0000 (19:49 +0100)]
Issue #19918: Fix PurePath.relative_to() under Windows.
Guido van Rossum [Sat, 28 Dec 2013 18:06:40 +0000 (08:06 -1000)]
Export asyncio.iscoroutine[function].
Antoine Pitrou [Sat, 28 Dec 2013 16:30:51 +0000 (17:30 +0100)]
Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data.
Antoine Pitrou [Sat, 28 Dec 2013 15:57:37 +0000 (16:57 +0100)]
Issue #19648: implement empty tests in pickletester. Patch by Gennadiy Zlobin.
R David Murray [Fri, 27 Dec 2013 22:01:16 +0000 (17:01 -0500)]
whatsnew: rewrite urllib, doctest, and poplib sections.
Also collapse redundant versionadded/versionchanged markup in
poplib.stls entry.
R David Murray [Fri, 27 Dec 2013 19:06:15 +0000 (14:06 -0500)]
whatsnew: importlib cleanup and source_to_code add; python partial impl.
R David Murray [Fri, 27 Dec 2013 16:43:42 +0000 (11:43 -0500)]
Mostly-null merge of #18116 backport (updated NEWS entry).
R David Murray [Fri, 27 Dec 2013 16:24:32 +0000 (11:24 -0500)]
#18116: backport fix to 3.3 since real-world failure mode demonstrated.
In issue 20074 it was pointed out that getpass would fail with a traceback if
stdin was, for example /dev/null, which is a non-unlikely scenario.
Also backported the tests from issue 17484 as modified by issue 18116.
(What I really did was copy getpass.py and test_getpass.py from their
state on tip as of
17bd04fbf3d3 ).
Donald Stufft [Fri, 27 Dec 2013 07:07:49 +0000 (02:07 -0500)]
Update bundled pip to 1.5rc3
Serhiy Storchaka [Thu, 26 Dec 2013 22:56:53 +0000 (00:56 +0200)]
Issue #20046: Locale alias table no longer contains entities which can be
calculated. Generalized support of the euro modifier.
R David Murray [Thu, 26 Dec 2013 20:11:28 +0000 (15:11 -0500)]
whatsnew for gc.get_stats, plus doc tweaks.
Clarified the "At the moment" wording, and added the get_stats entry in the
module summary that Serhiy noted was missing at the end of issue 16351.
Given that pydoc lists all the function docstrings, I'm not sure that module
summary section is actually needed; but, it is probably better to address that
when the module is converted to use Argument Clinic. In the meantime we
should keep the list complete.
Serhiy Storchaka [Thu, 26 Dec 2013 19:21:52 +0000 (21:21 +0200)]
Issue #20027: Fixed locale aliases for devanagari locales.
Serhiy Storchaka [Thu, 26 Dec 2013 19:20:59 +0000 (21:20 +0200)]
Issue #20027: Fixed locale aliases for devanagari locales.
Serhiy Storchaka [Thu, 26 Dec 2013 18:06:43 +0000 (20:06 +0200)]
Issue #20067: Tkinter variables now work when wantobjects is false.
Serhiy Storchaka [Thu, 26 Dec 2013 18:06:05 +0000 (20:06 +0200)]
Issue #20067: Tkinter variables now work when wantobjects is false.
doko@ubuntu.com [Thu, 26 Dec 2013 16:37:11 +0000 (17:37 +0100)]
- Issue #20070: Don't run test_urllib2net when network resources are not
enabled.
Zachary Ware [Thu, 26 Dec 2013 15:55:24 +0000 (09:55 -0600)]
Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been
disabled since 3.0 due to the changes in listcomp handling.