]>
granicus.if.org Git - python/log
Victor Stinner [Wed, 22 Oct 2014 07:55:44 +0000 (09:55 +0200)]
Issue #22695: Fix syntax of open() doc
Antoine Pitrou [Mon, 20 Oct 2014 22:14:39 +0000 (00:14 +0200)]
Issue #22660: update various mentions in the ssl module documentation.
Jesus Cea [Mon, 20 Oct 2014 14:18:24 +0000 (16:18 +0200)]
Docs: 'os.pwrite()' needs bytes, not strings
Georg Brandl [Mon, 20 Oct 2014 06:36:02 +0000 (08:36 +0200)]
Closes #22675: fix typo.
Berker Peksag [Sun, 19 Oct 2014 15:04:38 +0000 (18:04 +0300)]
Issue #22186: Fix typos in Lib/.
Patch by Févry Thibault.
Benjamin Peterson [Sun, 19 Oct 2014 14:47:58 +0000 (10:47 -0400)]
merge 3.3
Benjamin Peterson [Sun, 19 Oct 2014 14:47:49 +0000 (10:47 -0400)]
make plural s lowercase
Georg Brandl [Sun, 19 Oct 2014 09:54:08 +0000 (11:54 +0200)]
Closes #22663: patchcheck: only modify text files under Doc/
Ethan Furman [Sat, 18 Oct 2014 22:10:49 +0000 (15:10 -0700)]
Issue20689: add missing API pieces to __all__
Terry Jan Reedy [Sat, 18 Oct 2014 21:10:09 +0000 (17:10 -0400)]
Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,
revised by R. David Murray.
Ethan Furman [Sat, 18 Oct 2014 05:25:22 +0000 (22:25 -0700)]
Issue7186: document that __doc__ is not inherited by subclasses
R David Murray [Sat, 18 Oct 2014 00:28:47 +0000 (20:28 -0400)]
#18853: Fix resource warning in shlex's __main__ section.
Report and original fix by Vajrasky Kok.
R David Murray [Fri, 17 Oct 2014 23:55:11 +0000 (19:55 -0400)]
#9351: set_defaults on subparser is no longer ignored if set on parent.
Before, if a default was set on the parent parser, any default for that
variable set via set_defaults on a subparser would be ignored. Now
the subparser set_defaults is honored.
Patch by Jyrki Pullianinen.
R David Murray [Fri, 17 Oct 2014 23:30:13 +0000 (19:30 -0400)]
#21991: make headerregistry params property MappingProxyType.
It is unlikely anyone is using the fact that the dictionary returned
by the 'params' attribute was previously writable, but even if someone
is the API is provisional so this kind of change is acceptable (and
needed, to get the API "right" before it becomes official).
Patch by Stéphane Wirtel.
Antoine Pitrou [Fri, 17 Oct 2014 22:35:00 +0000 (00:35 +0200)]
Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode.
Zachary Ware [Fri, 17 Oct 2014 21:26:30 +0000 (16:26 -0500)]
Issue #22644: Update the Windows build to OpenSSL 1.0.1j
Zachary Ware [Fri, 17 Oct 2014 19:24:14 +0000 (14:24 -0500)]
Fix test_ctypes failure on OpenIndiana buildbot where _ctypes is not built
Zachary Ware [Fri, 17 Oct 2014 18:59:18 +0000 (13:59 -0500)]
Issue #16000: Convert test_curses to use unittest
Vinay Sajip [Fri, 17 Oct 2014 07:49:38 +0000 (08:49 +0100)]
Issue #22646: Accept list as well as tuple to support initialisation via dictConfig().
Terry Jan Reedy [Fri, 17 Oct 2014 05:31:35 +0000 (01:31 -0400)]
Issue #22629: Revise idle_test.htest, mostly docstring. Start revision of
htests to add # htest # marker for coveragepy and stop tcl errors.
Terry Jan Reedy [Fri, 17 Oct 2014 03:12:48 +0000 (23:12 -0400)]
Issue #22628: Increase Treewidge line spacing so lines do not overlap.
Move test lines up with respect to icons.
Benjamin Peterson [Thu, 16 Oct 2014 03:58:32 +0000 (23:58 -0400)]
Merge 3.3
Terry Jan Reedy [Thu, 16 Oct 2014 02:01:31 +0000 (22:01 -0400)]
Issue #16233: When the module browser is not invoked in an editor window with
a filename, pop up the Open Module box. If a module is opened, open a
corresponding browser.
Antoine Pitrou [Wed, 15 Oct 2014 21:14:53 +0000 (23:14 +0200)]
Fixed signed/unsigned comparison warning
Benjamin Peterson [Wed, 15 Oct 2014 17:40:34 +0000 (13:40 -0400)]
merge heads
Benjamin Peterson [Wed, 15 Oct 2014 17:40:01 +0000 (13:40 -0400)]
merge 3.3 (#22643)
Benjamin Peterson [Wed, 15 Oct 2014 17:39:46 +0000 (13:39 -0400)]
test is cpython only
Victor Stinner [Wed, 15 Oct 2014 16:49:16 +0000 (18:49 +0200)]
asyncio doc: write simpler examples to introduce asyncio
Benjamin Peterson [Wed, 15 Oct 2014 16:17:33 +0000 (12:17 -0400)]
merge 3.3
Benjamin Peterson [Wed, 15 Oct 2014 16:17:21 +0000 (12:17 -0400)]
it suffices to check for PY_SSIZE_T_MAX overflow (#22643)
Benjamin Peterson [Wed, 15 Oct 2014 15:51:12 +0000 (11:51 -0400)]
Merge 3.3
Benjamin Peterson [Wed, 15 Oct 2014 15:51:05 +0000 (11:51 -0400)]
make sure length is unsigned
Benjamin Peterson [Wed, 15 Oct 2014 15:48:41 +0000 (11:48 -0400)]
merge 3.3 (#22643)
Benjamin Peterson [Wed, 15 Oct 2014 15:47:36 +0000 (11:47 -0400)]
fix integer overflow in unicode case operations (closes #22643)
Antoine Pitrou [Wed, 15 Oct 2014 14:58:21 +0000 (16:58 +0200)]
Issue #22641: In asyncio, the default SSL context for client connections is now created using ssl.create_default_context(), for stronger security.
Ethan Furman [Wed, 15 Oct 2014 01:56:53 +0000 (18:56 -0700)]
Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are SocketKind
Terry Jan Reedy [Tue, 14 Oct 2014 22:55:20 +0000 (18:55 -0400)]
Issue #3068: Change 0/1 to False/True so that extension configure dialog can
easily recognize and display boolean values as such and recognize changes.
Also reformat comments and alphabetize extensions included with Idle.
Victor Stinner [Tue, 14 Oct 2014 20:56:25 +0000 (22:56 +0200)]
Issue #18643: asyncio.windows_utils now reuse socket.socketpair() on Windows if
available
Since Python 3.5, socket.socketpair() is now also available on Windows.
Make csock blocking before calling the accept() method, and fix also a typo in
an error message.
Terry Jan Reedy [Tue, 14 Oct 2014 20:56:42 +0000 (16:56 -0400)]
Issue #22632: replace dead link with version-specific doc link.
Ethan Furman [Tue, 14 Oct 2014 15:58:32 +0000 (08:58 -0700)]
Issue22506: added methods on base Enum class now show up in dir of Enum subclass (3.4)
Victor Stinner [Mon, 13 Oct 2014 22:52:07 +0000 (00:52 +0200)]
asyncio doc: rewrite subprocess doc
* add a new example using transport and protocol
* rewrite the example using streams to make it much simpler (remove error
handling, use a simpler Python code)
* copy (and adapt) more documentation from the subprocess module:
- add a note about Process.wait() deadlock
- add a note about shell injection
- etc.
* sort Process methods and attributes in the same order than subprocess.Popen
methods and attributes, so the documentation looks closer
* list differences between Process and subprocess.Popen APIs
Victor Stinner [Mon, 13 Oct 2014 22:02:10 +0000 (00:02 +0200)]
asyncio doc: protocol_factory of subprocess_exec() and subprocess_shell() must
instanciate a subclass of SubprocessProtocol
Victor Stinner [Mon, 13 Oct 2014 21:56:43 +0000 (23:56 +0200)]
asyncio doc: document BaseSubprocessTransport.close() method
Modify also the get_pipe_transport() doc to mention explicitly the supported
file descriptors.
Alex Gaynor [Mon, 13 Oct 2014 19:58:03 +0000 (12:58 -0700)]
Use https:// URLs for the bug tracker in the :issue: role.
Thanks to Ezio for noticing this
Alex Gaynor [Mon, 13 Oct 2014 19:55:21 +0000 (12:55 -0700)]
issue22626: Use https:// for a link to the bug tracker
Benjamin Peterson [Mon, 13 Oct 2014 19:50:37 +0000 (15:50 -0400)]
merge heads
Charles-François Natali [Mon, 13 Oct 2014 18:19:26 +0000 (19:19 +0100)]
Issue #22435: Fix a file descriptor leak when SocketServer bind fails.
Benjamin Peterson [Mon, 13 Oct 2014 15:55:02 +0000 (11:55 -0400)]
merge 3.3
Benjamin Peterson [Mon, 13 Oct 2014 15:54:50 +0000 (11:54 -0400)]
note xmlrpclib doesn't verify certs (yet)
Terry Jan Reedy [Mon, 13 Oct 2014 02:58:47 +0000 (22:58 -0400)]
Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka.
Victor Stinner [Sun, 12 Oct 2014 22:55:50 +0000 (00:55 +0200)]
asyncio: add missing @coroutine decorator
Victor Stinner [Sun, 12 Oct 2014 19:37:16 +0000 (21:37 +0200)]
asyncio doc: update debug traces
Victor Stinner [Sun, 12 Oct 2014 19:36:17 +0000 (21:36 +0200)]
asyncio doc: more explicit doc for async()
The function schedules the execution of coroutines, it's not just a wrapper for
something.
Victor Stinner [Sun, 12 Oct 2014 18:36:04 +0000 (20:36 +0200)]
asyncio doc: reformat create_server() doc
Fix also the reate_unix_connection() doc: the method is not support on Windows,
not need to mention that ssl is not support with ProactorEventLoop.
Victor Stinner [Sun, 12 Oct 2014 18:18:16 +0000 (20:18 +0200)]
asyncio doc: add TCP echo client/server using streams
R David Murray [Sun, 12 Oct 2014 19:17:22 +0000 (15:17 -0400)]
#20815: small readability improvements in ipaddress tests.
Patch by Michel Albert. We don't normally do patches that just tweak
whitespace, but ipaddress is relatively new and the package maintainers
approved the patch.
R David Murray [Sun, 12 Oct 2014 17:54:48 +0000 (13:54 -0400)]
#13096: Fix segfault in CTypes POINTER handling of large values.
Patch by Meador Inge.
Serhiy Storchaka [Sun, 12 Oct 2014 17:35:30 +0000 (20:35 +0300)]
Always handle non-handled events before destoying root widget in tests.
This gets rid of Tcl warnings when they are handled later when the root is
already destroyed.
R David Murray [Sun, 12 Oct 2014 17:14:12 +0000 (13:14 -0400)]
#17325: Improve distutils PyPI documentation.
Patch by Chris Jerdonek.
R David Murray [Sun, 12 Oct 2014 16:39:46 +0000 (12:39 -0400)]
#11973: add test for previously fixed kevent signed/unsigned bug.
Patch by David Naylor.
Georg Brandl [Sun, 12 Oct 2014 14:13:32 +0000 (16:13 +0200)]
Closes #22586: clarify meaning of allow_fragments in urlparse.
Victor Stinner [Sun, 12 Oct 2014 09:35:09 +0000 (11:35 +0200)]
asyncio doc: enhance TCP client example
Victor Stinner [Sun, 12 Oct 2014 09:30:17 +0000 (11:30 +0200)]
asyncio doc: clarify how servers create protocol instances
Victor Stinner [Sun, 12 Oct 2014 09:24:26 +0000 (11:24 +0200)]
asyncio doc: add UDP client and server examples
Victor Stinner [Sun, 12 Oct 2014 09:13:40 +0000 (11:13 +0200)]
asyncio doc: use server.wait_closed() in TCP echo server example
Victor Stinner [Sun, 12 Oct 2014 07:52:11 +0000 (09:52 +0200)]
asyncio: enhance protocol representation
Add "closed" or "closing" to repr() of selector and proactor transports
Georg Brandl [Sun, 12 Oct 2014 07:30:46 +0000 (09:30 +0200)]
merge 3.3 into 3.4
Georg Brandl [Sun, 12 Oct 2014 07:29:19 +0000 (09:29 +0200)]
Merge 3.2 into 3.3.
Georg Brandl [Sun, 12 Oct 2014 07:03:47 +0000 (09:03 +0200)]
Added tag v3.3.6 for changeset
971fec30da1f
Georg Brandl [Sun, 12 Oct 2014 07:03:40 +0000 (09:03 +0200)]
Bump to 3.3.6
Georg Brandl [Sun, 12 Oct 2014 06:51:30 +0000 (08:51 +0200)]
Added tag v3.2.6 for changeset
0bd5f4f14de9
Georg Brandl [Sun, 12 Oct 2014 06:50:38 +0000 (08:50 +0200)]
Bump to 3.2.6
Georg Brandl [Sun, 12 Oct 2014 06:50:11 +0000 (08:50 +0200)]
#16040: fix unlimited read from connection in nntplib.
Georg Brandl [Sun, 12 Oct 2014 06:45:15 +0000 (08:45 +0200)]
Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases.
Terry Jan Reedy [Sun, 12 Oct 2014 05:11:05 +0000 (01:11 -0400)]
Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.
Berker Peksag [Sun, 12 Oct 2014 02:11:16 +0000 (05:11 +0300)]
Issue #22613: Fix reprlib.Repr subclass example on Python 3.
Reported by Jacques Ducasse.
Nick Coghlan [Sun, 12 Oct 2014 00:25:00 +0000 (10:25 +1000)]
Issue #21061: correctly note redirect_stdout is reentrant
Victor Stinner [Sat, 11 Oct 2014 14:30:02 +0000 (16:30 +0200)]
asyncio doc: socket.socketpair() is not available on Windows yet
Victor Stinner [Sat, 11 Oct 2014 14:16:27 +0000 (16:16 +0200)]
asyncio doc: add examples showing the 3 ways to wait for data from an open
socket
Victor Stinner [Sat, 11 Oct 2014 14:15:58 +0000 (16:15 +0200)]
asyncio doc: cleanup Hello World examples
Victor Stinner [Sat, 11 Oct 2014 13:52:14 +0000 (15:52 +0200)]
asyncio doc: the "Get HTTP headers" example now supports HTTPS
Georg Brandl [Sat, 11 Oct 2014 13:08:18 +0000 (15:08 +0200)]
merge
Georg Brandl [Sat, 11 Oct 2014 12:47:11 +0000 (14:47 +0200)]
Closes #18959: move optparse and imp to new "superseded modules" chapter
Georg Brandl [Sat, 11 Oct 2014 12:36:02 +0000 (14:36 +0200)]
Closes #21687: delimiter in Py_SetPath is platform dependent
Georg Brandl [Sat, 11 Oct 2014 12:32:34 +0000 (14:32 +0200)]
Closes #21675: fix ordering of description in library intro
Victor Stinner [Sat, 11 Oct 2014 12:30:18 +0000 (14:30 +0200)]
Issue #22601: run_forever() now consumes BaseException of the temporary task
If the coroutine raised a BaseException, consume the exception to not log a
warning. The caller doesn't have access to the local task.
Benjamin Peterson [Sat, 11 Oct 2014 00:58:30 +0000 (20:58 -0400)]
prevent passing NULL to memcpy (closes #22605)
Patch by Jakub Wilk.
Terry Jan Reedy [Fri, 10 Oct 2014 23:33:45 +0000 (19:33 -0400)]
Issue #21986: Idle now matches interpreter in not pickling user code objects.
Patch by Claudiu Popa
Antoine Pitrou [Fri, 10 Oct 2014 21:49:32 +0000 (23:49 +0200)]
Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j).
Zachary Ware [Fri, 10 Oct 2014 21:03:14 +0000 (16:03 -0500)]
Issue #15414: Clean and correct the os.path.join docs.
In particular, correctly describe the behavior of ntpath.join.
Based on a patch by Dave Sawyer.
Terry Jan Reedy [Fri, 10 Oct 2014 20:53:41 +0000 (16:53 -0400)]
Issue 22603: add Francisco Fernández Castaño to ACKS.
Terry Jan Reedy [Fri, 10 Oct 2014 20:00:18 +0000 (16:00 -0400)]
Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño.
Petri Lehtinen [Fri, 10 Oct 2014 18:21:52 +0000 (21:21 +0300)]
Issue #11694: Raise ConversionError in xdrlib as documented
Victor Stinner [Fri, 10 Oct 2014 12:23:00 +0000 (14:23 +0200)]
test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadic
failures on Windows
Berker Peksag [Fri, 10 Oct 2014 11:34:16 +0000 (14:34 +0300)]
Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present.
Patch by Remi Pointel.
Victor Stinner [Fri, 10 Oct 2014 10:45:10 +0000 (12:45 +0200)]
Issue #22564: ssl doc: mention asyncio in the non-blocking section
Victor Stinner [Fri, 10 Oct 2014 10:07:19 +0000 (12:07 +0200)]
Issue #22564: ssl doc: mention how SSLSocket are usually created
Victor Stinner [Fri, 10 Oct 2014 10:06:51 +0000 (12:06 +0200)]
Issue #22564: ssl doc: use "class" marker to document the SSLSocket class
Victor Stinner [Fri, 10 Oct 2014 10:05:56 +0000 (12:05 +0200)]
Issue #22564: ssl doc: document read(), write(), pending, server_side and
server_hostname methods and attributes of SSLSocket.
Victor Stinner [Fri, 10 Oct 2014 10:04:15 +0000 (12:04 +0200)]
Issue #22564: ssl doc: fix typos