]>
granicus.if.org Git - python/log
Serhiy Storchaka [Tue, 11 Feb 2014 08:30:59 +0000 (10:30 +0200)]
Issue #19856: shutil.move() failed to move a directory to other directory
on Windows if source name ends with os.altsep.
Benjamin Peterson [Tue, 11 Feb 2014 03:19:02 +0000 (22:19 -0500)]
don't put runtime values in array initializer for C89 compliance (closes #20588)
Georg Brandl [Mon, 10 Feb 2014 21:05:16 +0000 (22:05 +0100)]
Fix trailing whitespace.
Georg Brandl [Mon, 10 Feb 2014 21:04:20 +0000 (22:04 +0100)]
merge with 3.3.4 releasing repo
Georg Brandl [Mon, 10 Feb 2014 20:56:33 +0000 (21:56 +0100)]
Post-release updates.
Serhiy Storchaka [Mon, 10 Feb 2014 17:20:22 +0000 (19:20 +0200)]
issue12085: Use more Pythonic way to check _child_created.
_active shouldn't be cached, it set to None on shutdown.
Serhiy Storchaka [Sun, 9 Feb 2014 11:33:53 +0000 (13:33 +0200)]
Issue #20437: Fixed 21 potential bugs when deleting objects references.
Georg Brandl [Sun, 9 Feb 2014 07:59:00 +0000 (08:59 +0100)]
Added tag v3.3.4 for changeset
7ff62415e426
Georg Brandl [Sun, 9 Feb 2014 07:57:59 +0000 (08:57 +0100)]
news entry
R David Murray [Sat, 8 Feb 2014 22:54:56 +0000 (17:54 -0500)]
#14983: always add a line end after a MIME boundary marker.
This is more RFC compliant (see issue) and fixes a problem with
signature verifiers rejecting the part when signed. There is some
amount of backward compatibility concern here since it changes
the output, but the RFC issue coupled with fixing the problem
with signature verifiers seems worth the small risk of breaking
code that depends on the current incorrect output.
Senthil Kumaran [Sat, 8 Feb 2014 22:28:03 +0000 (14:28 -0800)]
Include the mention of ResourceWarning being displayed by default by the test runner.
Addressing #issue 20529
Antoine Pitrou [Sat, 8 Feb 2014 22:03:56 +0000 (23:03 +0100)]
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket.
For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message.
Charles-François Natali [Sat, 8 Feb 2014 21:54:11 +0000 (22:54 +0100)]
Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the
proper CAN headers.
R David Murray [Sat, 8 Feb 2014 18:12:00 +0000 (13:12 -0500)]
#16983: Apply postel's law to encoded words inside quoted strings.
This applies only to the new parser. The old parser decodes encoded words
inside quoted strings already, although it gets the whitespace wrong
when it does so.
This version of the patch only handles the most common case (a single encoded
word surrounded by quotes), but I haven't seen any other variations of this in
the wild yet, so its good enough for now.
R David Murray [Sat, 8 Feb 2014 16:48:20 +0000 (11:48 -0500)]
#19772: Do not mutate message when downcoding to 7bit.
This is a bit of an ugly hack because of the way generator pieces together the
output message. The deepcopys aren't too expensive, though, because we know it
is only called on messages that are not multiparts, and the payload (the thing
that could be large) is an immutable object.
Test and preliminary work on patch by Vajrasky Kok.
Serhiy Storchaka [Sat, 8 Feb 2014 14:38:35 +0000 (16:38 +0200)]
Issue #20553. Use specific asserts in ipaddress tests.
Terry Jan Reedy [Sat, 8 Feb 2014 14:02:26 +0000 (09:02 -0500)]
Issue #20406: Use Python application icons for Idle window title bars.
Patch mostly by Serhiy Storchaka.
Nick Coghlan [Sat, 8 Feb 2014 13:39:54 +0000 (23:39 +1000)]
Fix #18805 NEWS entry
Nick Coghlan [Sat, 8 Feb 2014 13:17:36 +0000 (23:17 +1000)]
Issue #18805: better netmask validation in ipaddress
Serhiy Storchaka [Sat, 8 Feb 2014 13:06:08 +0000 (15:06 +0200)]
Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests.
Serhiy Storchaka [Sat, 8 Feb 2014 12:50:08 +0000 (14:50 +0200)]
Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests.
Serhiy Storchaka [Sat, 8 Feb 2014 12:28:33 +0000 (14:28 +0200)]
Issue #20546: Use specific asserts in int tests.
Serhiy Storchaka [Sat, 8 Feb 2014 12:01:29 +0000 (14:01 +0200)]
Issue #20538: UTF-7 incremental decoder produced inconsistant string when
input was truncated in BASE64 section.
R David Murray [Fri, 7 Feb 2014 20:02:19 +0000 (15:02 -0500)]
#17369: Improve handling of broken RFC2231 values in get_filename.
This fixes a regression relative to python2.
R David Murray [Fri, 7 Feb 2014 18:47:40 +0000 (13:47 -0500)]
#20013: don't raise socket error when selected mailbox deleted.
I'm checking this in without a test because not much of this code
is tested and I don't have time to work up the necessary extensions
to the existing test framework.
The patch itself was tested by the person who reported the bug.
R David Murray [Fri, 7 Feb 2014 18:03:08 +0000 (13:03 -0500)]
#19063: the unicode-in-set_payload problem isn't getting fixed in 3.4.
Serhiy Storchaka [Fri, 7 Feb 2014 08:06:39 +0000 (10:06 +0200)]
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka [Thu, 6 Feb 2014 22:26:57 +0000 (00:26 +0200)]
Silence BytesWarning (backport
267a4d4d9d65 ).
Serhiy Storchaka [Thu, 6 Feb 2014 20:49:45 +0000 (22:49 +0200)]
Issue #20363. Fixed BytesWarning triggerred by test suite.
Patch by Berker Peksag.
Serhiy Storchaka [Thu, 6 Feb 2014 19:10:41 +0000 (21:10 +0200)]
Fix empty strings to empty bytes objects.
Brett Cannon [Thu, 6 Feb 2014 14:46:08 +0000 (09:46 -0500)]
Issue #20488: Update docs to say importlib is *the* implementaiton of
import and not *an* implementation.
Serhiy Storchaka [Thu, 6 Feb 2014 07:26:56 +0000 (09:26 +0200)]
Issue #20520: Fixed readline test in test_codecs.
Ned Deily [Thu, 6 Feb 2014 01:02:29 +0000 (17:02 -0800)]
Issue #20374: delete spurious empty line
Ned Deily [Thu, 6 Feb 2014 01:02:29 +0000 (17:02 -0800)]
Issue #20374: delete spurious empty line
Ned Deily [Thu, 6 Feb 2014 00:53:10 +0000 (16:53 -0800)]
Issue #20374: Avoid compiler warnings when compiling readline with libedit.
Georg Brandl [Sun, 9 Feb 2014 07:43:05 +0000 (08:43 +0100)]
Bump to 3.3.4 final
Ned Deily [Thu, 6 Feb 2014 00:53:10 +0000 (16:53 -0800)]
Issue #20374: Avoid compiler warnings when compiling readline with libedit.
R David Murray [Wed, 5 Feb 2014 19:53:40 +0000 (14:53 -0500)]
#14515: clarify that TemporaryDirectory's __enter__ returns the name.
Serhiy Storchaka [Wed, 5 Feb 2014 18:53:36 +0000 (20:53 +0200)]
Issue #19920: TarFile.list() no longer fails when outputs a listing
containing non-encodable characters. Added tests for TarFile.list().
Based on patch by Vajrasky Kok.
Serhiy Storchaka [Wed, 5 Feb 2014 11:42:01 +0000 (13:42 +0200)]
Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.
Christian Heimes [Tue, 4 Feb 2014 23:29:17 +0000 (00:29 +0100)]
Issue #20515: Fix NULL pointer dereference introduced by issue #20368
CID
1167595
Vinay Sajip [Tue, 4 Feb 2014 16:28:07 +0000 (16:28 +0000)]
Issue #20509: Added cross-reference in documentation.
Benjamin Peterson [Tue, 4 Feb 2014 15:10:55 +0000 (10:10 -0500)]
restore namespacing of pyexpat symbols (closes #19186)
Ned Deily [Mon, 3 Feb 2014 21:58:31 +0000 (13:58 -0800)]
Issue #20474: Fix "unexpected success" test_socket failures on OS X 10.7+.
Serhiy Storchaka [Mon, 3 Feb 2014 20:31:09 +0000 (22:31 +0200)]
Skip expr* tests for large integers for Tcl <8.5.
The '**' operator is available only since 8.5 and in any case such large
integers are not supported on Tcl <8.5.
Antoine Pitrou [Mon, 3 Feb 2014 19:59:59 +0000 (20:59 +0100)]
Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug output every time it is called, regardless of the compilation cache.
Serhiy Storchaka [Mon, 3 Feb 2014 19:33:33 +0000 (21:33 +0200)]
Issue #19761: Fixed Tkinter tests on OS X.
Serhiy Storchaka [Mon, 3 Feb 2014 19:24:07 +0000 (21:24 +0200)]
Issue #20368: The null character now correctly passed from Tcl to Python.
Improved error handling in variables-related commands.
Serhiy Storchaka [Mon, 3 Feb 2014 18:41:34 +0000 (20:41 +0200)]
Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),
exprlong() and exprboolean().
Andrew Kuchling [Mon, 3 Feb 2014 14:04:02 +0000 (09:04 -0500)]
Use different word
Vinay Sajip [Mon, 3 Feb 2014 11:51:45 +0000 (11:51 +0000)]
Added cookbook entry on logging filter configuration using dictConfig().
Antoine Pitrou [Sun, 2 Feb 2014 22:37:29 +0000 (23:37 +0100)]
Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline translation settings.
Ned Deily [Sun, 2 Feb 2014 21:59:49 +0000 (13:59 -0800)]
Issue #19990: Install test/imghdrdata.
Antoine Pitrou [Sun, 2 Feb 2014 21:48:25 +0000 (22:48 +0100)]
Issue #20423: fix documentation of io.StringIO's newline parameter
Serhiy Storchaka [Sun, 2 Feb 2014 21:04:24 +0000 (23:04 +0200)]
Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.
Benjamin Peterson [Sun, 2 Feb 2014 20:30:22 +0000 (15:30 -0500)]
use with statement to ensure zipfile is always closed (closes #20102)
Terry Jan Reedy [Sun, 2 Feb 2014 04:08:33 +0000 (23:08 -0500)]
Update the python.gif icon for the Idle classbrowser and pathbowser
from the old green snake to the new new blue and yellow snakes.
Ezio Melotti [Sat, 1 Feb 2014 19:21:01 +0000 (21:21 +0200)]
#20288: fix handling of invalid numeric charrefs in HTMLParser.
Zachary Ware [Fri, 31 Jan 2014 18:06:14 +0000 (12:06 -0600)]
Issue #20460: Render 'bytes' as a class, not a function.
Patch by OSAMU NAKAMURA.
Zachary Ware [Fri, 31 Jan 2014 17:30:36 +0000 (11:30 -0600)]
Fix unfinished thought in xml overview page. Suggested by Bo Bayles on docs@.
Gregory P. Smith [Thu, 30 Jan 2014 06:59:34 +0000 (22:59 -0800)]
Remove issue 19081 Misc/NEWS entry since it isn't entirely fixed yet.
Yury Selivanov [Thu, 30 Jan 2014 05:12:02 +0000 (00:12 -0500)]
inspect.docs: Document constructors for Signature & Parameter #20442
Antoine Pitrou [Wed, 29 Jan 2014 22:44:05 +0000 (23:44 +0100)]
Issue #20373: generalize use of test.script_helper in test_warnings. Patch by Arfrever.
Serhiy Storchaka [Wed, 29 Jan 2014 09:33:26 +0000 (11:33 +0200)]
Issue #20424: Python implementation of io.StringIO now supports lone surrogates.
Terry Jan Reedy [Wed, 29 Jan 2014 04:13:45 +0000 (23:13 -0500)]
Idlelib: forward port changes that silenced 2.7 -3 deprecation warnings and
which are at least as efficient. On Py3, unpacking exceptions never works.
Serhiy Storchaka [Mon, 27 Jan 2014 21:15:14 +0000 (23:15 +0200)]
Issue #19456: ntpath.join() now joins relative paths correctly when a drive
is present.
Serhiy Storchaka [Mon, 27 Jan 2014 09:18:27 +0000 (11:18 +0200)]
Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely
successful when called during nulling out of modules during shutdown.
Misleading exception no longer raised when resource warning is emitted
during shutdown.
Victor Stinner [Mon, 27 Jan 2014 08:11:48 +0000 (09:11 +0100)]
Issue #20367: Fix behavior of concurrent.futures.as_completed() for duplicate
arguments. Patch by Glenn Langford.
Georg Brandl [Mon, 27 Jan 2014 07:35:20 +0000 (08:35 +0100)]
Post release update.
Georg Brandl [Mon, 27 Jan 2014 07:24:09 +0000 (08:24 +0100)]
Added tag v3.3.4rc1 for changeset
fa92f5f940c6
Georg Brandl [Mon, 27 Jan 2014 07:24:02 +0000 (08:24 +0100)]
Remove old tag.
Georg Brandl [Mon, 27 Jan 2014 06:56:59 +0000 (07:56 +0100)]
.hgtouch: add a rule for Include/Python-ast.h
Georg Brandl [Mon, 27 Jan 2014 07:22:49 +0000 (08:22 +0100)]
Closes #19966: allow hgtouch to operate on a base dir that is != the repo root.
Benjamin Peterson [Mon, 27 Jan 2014 03:52:08 +0000 (22:52 -0500)]
eliminate redundancy between yield stmt and yield expr docs (closes #12704)
Patch by Nikolaus Rath.
Terry Jan Reedy [Mon, 27 Jan 2014 03:24:26 +0000 (22:24 -0500)]
Issue #17721: Remove non-functional configuration dialog help button until we
make it actually gives some help when clicked. Patch by Guilherme Simões.
Terry Jan Reedy [Mon, 27 Jan 2014 02:34:33 +0000 (21:34 -0500)]
Idlelib.calltips: add test of starred first parameters. They should not be
removed even for bound methods. (Inspect.signature does, see 20401.)
Terry Jan Reedy [Mon, 27 Jan 2014 01:12:18 +0000 (20:12 -0500)]
Merge heads.
Terry Jan Reedy [Mon, 27 Jan 2014 00:55:34 +0000 (19:55 -0500)]
Issue #20338: Increase allowed tip width slightly and wrap long signagure lines.
Original patch by Serhiy Storchaka.
Serhiy Storchaka [Sun, 26 Jan 2014 21:48:38 +0000 (23:48 +0200)]
Issue #19990: Added tests for the imghdr module.
Based on patch by Claudiu Popa.
Serhiy Storchaka [Sun, 26 Jan 2014 17:21:00 +0000 (19:21 +0200)]
Issue #8260: The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after
readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
Benjamin Peterson [Sat, 25 Jan 2014 18:27:06 +0000 (13:27 -0500)]
update sphinx url
Benjamin Peterson [Sat, 25 Jan 2014 18:26:18 +0000 (13:26 -0500)]
linkify
Serhiy Storchaka [Sat, 25 Jan 2014 17:43:02 +0000 (19:43 +0200)]
Issue #20331: Fixed possible FD leaks in various modules:
http.server, imghdr, mailcap, mimetypes, xml.etree.
Victor Stinner [Sat, 25 Jan 2014 13:37:50 +0000 (14:37 +0100)]
Issue #20311: Revert
033137c12d88 , select.epoll.poll() rounds again the timeout
towards zero
Eric V. Smith [Sat, 25 Jan 2014 10:11:43 +0000 (05:11 -0500)]
Fix grammar.
Georg Brandl [Sat, 25 Jan 2014 08:49:22 +0000 (09:49 +0100)]
Added tag v3.3.4rc1 for changeset
7f32e55f161b
Georg Brandl [Sat, 25 Jan 2014 08:19:50 +0000 (09:19 +0100)]
Bump to 3.3.4rc1.
Georg Brandl [Sat, 25 Jan 2014 08:19:36 +0000 (09:19 +0100)]
Update IDLE news from Misc/NEWS.
Georg Brandl [Sat, 25 Jan 2014 08:15:44 +0000 (09:15 +0100)]
doc: pydoc topic and suspicious markup update
Georg Brandl [Sat, 25 Jan 2014 08:11:13 +0000 (09:11 +0100)]
#20311: revert changes to 3.3 branch for now until experts have decided how to resolve the issue.
Georg Brandl [Sat, 25 Jan 2014 08:02:18 +0000 (09:02 +0100)]
#16042: CVE-2013-1752: smtplib fix for unlimited readline() from socket
Benjamin Peterson [Sat, 25 Jan 2014 04:59:57 +0000 (23:59 -0500)]
update hosting faq
Serhiy Storchaka [Fri, 24 Jan 2014 20:28:06 +0000 (22:28 +0200)]
Fix typo.
Serhiy Storchaka [Fri, 24 Jan 2014 20:19:23 +0000 (22:19 +0200)]
Issue #20384: Fix the test_tarfile test on Windows.
On Windows os.open() error message doesn't contain file name.
Benjamin Peterson [Fri, 24 Jan 2014 16:44:16 +0000 (11:44 -0500)]
new plan: just remove typecasts (closes #20374)
Nick Coghlan [Fri, 24 Jan 2014 13:05:45 +0000 (23:05 +1000)]
Issue 20317: Remove debugging code from contextlib
- Alex J Burke noticed a debugging raise in the commit that
fixed the original bug reported in issue 20317
- this showed that multiple iterations through the affected
loop wasn't actually being tested
Benjamin Peterson [Fri, 24 Jan 2014 05:32:12 +0000 (00:32 -0500)]
use new readline function types (closes #20374)
Serhiy Storchaka [Thu, 23 Jan 2014 14:48:44 +0000 (16:48 +0200)]
Fixed test_user_command on OpenSolaris where floats can have different string
representation in Tcl and Python.
Serhiy Storchaka [Thu, 23 Jan 2014 14:22:55 +0000 (16:22 +0200)]
Issue #19936: Restored executable bits for several libffi files.
These files have shebangs and executable bits in the libffi distribution.
Serhiy Storchaka [Thu, 23 Jan 2014 07:44:05 +0000 (09:44 +0200)]
Added test_user_command in test_tcl.
It tests the convertion Tcl values to Python values when Tcl calls a command
implemented on Python. Currently all values are passed as strings.