]>
granicus.if.org Git - python/log
Benjamin Peterson [Sun, 23 Nov 2014 17:16:48 +0000 (11:16 -0600)]
initialize _makefile_refs earlier so things don't blow up when close() is called in the constructor
Antoine Pitrou [Fri, 17 Oct 2014 17:28:30 +0000 (19:28 +0200)]
Backport disabling of SSLv3 in ssl._create_stdlib_context() (issue #22638).
The backport currently doesn't achieve anything since the function isn't used (yet).
Ned Deily [Sun, 23 Nov 2014 00:03:40 +0000 (16:03 -0800)]
Fix 2to3 reference link in pyporting.rst.
Ned Deily [Sat, 22 Nov 2014 22:35:43 +0000 (14:35 -0800)]
Remove line breaks in OS X installer README screen.
Ned Deily [Sat, 22 Nov 2014 22:17:05 +0000 (14:17 -0800)]
Add downloads page link to OS X installer README screens.
Serhiy Storchaka [Fri, 21 Nov 2014 19:54:43 +0000 (21:54 +0200)]
Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD.
Antoine Pitrou [Fri, 21 Nov 2014 01:05:06 +0000 (02:05 +0100)]
Add regression issue number to Misc/NEWS entry.
Antoine Pitrou [Fri, 21 Nov 2014 01:04:21 +0000 (02:04 +0100)]
Issue #21963: backout issue #1856 patch (avoid crashes and lockups when
daemon threads run while the interpreter is shutting down; instead,
these threads are now killed when they try to take the GIL), as it seems
to break some existing code.
Donald Stufft [Thu, 20 Nov 2014 14:38:31 +0000 (09:38 -0500)]
Issue #22827: Backport the new Distributing and Instaling Docs from 3.4
Ned Deily [Thu, 20 Nov 2014 10:11:03 +0000 (02:11 -0800)]
Issue 22878: PEP 477 - "make install" and "make altinstall" integration
The backport of ensurepip to 2.7.9 allows pip to optionally be installed
or upgraded using the bundled pip provided by the new ensurepip module.
The option can be specified persistently using the configure option:
./configure --with-ensurepip[=upgrade|install|no]
It can also be overridden on either the "install" or "altinstall" targets:
make [alt]install ENSUREPIP=[upgrade|install|no]
For Python 2, the default option is "no" (do not install pip).
Serhiy Storchaka [Tue, 18 Nov 2014 22:11:05 +0000 (00:11 +0200)]
Issue #22453: Fexed reference leaks when format error messages in ceval.c.
Warn against the use of leaking macro PyObject_REPR().
Serhiy Storchaka [Tue, 18 Nov 2014 15:29:47 +0000 (17:29 +0200)]
Issue #18637: Fixed an error in _PyNode_SizeOf declaration.
Patch by Roumen Petrov.
Serhiy Storchaka [Sat, 15 Nov 2014 11:21:01 +0000 (13:21 +0200)]
Issue #22193: Fixed integer overflow error in sys.getsizeof().
Fixed an error in _PySys_GetSizeOf declaration.
Ned Deily [Sat, 15 Nov 2014 02:57:13 +0000 (18:57 -0800)]
Update OS X installer documentation files for 2.7.9.
Ned Deily [Sat, 15 Nov 2014 02:53:59 +0000 (18:53 -0800)]
Issue #22877: PEP 477 - OS X installer for 2.7.9 now installs pip.
Georg Brandl [Fri, 14 Nov 2014 10:20:07 +0000 (11:20 +0100)]
Fix description.
Georg Brandl [Fri, 14 Nov 2014 10:12:53 +0000 (11:12 +0100)]
Closes #22868: make example less ambiguous.
Nick Coghlan [Fri, 14 Nov 2014 10:05:04 +0000 (20:05 +1000)]
Close #22300 by tweaking 2.7.9 What's New announcements
Steve Dower [Thu, 13 Nov 2014 03:02:20 +0000 (19:02 -0800)]
Issue #22850: Backport ensurepip Windows installer changes to 2.7
Donald Stufft [Tue, 11 Nov 2014 17:32:57 +0000 (12:32 -0500)]
Define a __hash__ to quiet down a -3 warning
Donald Stufft [Tue, 11 Nov 2014 15:53:50 +0000 (10:53 -0500)]
Upgrade setuptools to 7.0
Donald Stufft [Tue, 11 Nov 2014 15:24:11 +0000 (10:24 -0500)]
Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7
* Backports ensurepip to the 2.7 branch
* Backports some of the improved documentation to the 2.7 branch.
* Adds a private backport of the 3.x mock library as test._mock_backport
to enable saner testing of ensurepip.
Key Differences from 3.x:
* Ensurepip does not have any Makefile integration, specifically
it is not ran by default in the Makefile.
* There is no venv module in 2.7, so downstream distributors can
completely disable ensurepip, ideally with a message redirecting
to the correct way to install pip.
* To match the ``python`` command in 2.7, ensurepip will install
the unversioned ``pip`` command as well.
* No-op and hide --default-pip and add --no-default-pip to restore
the 3.x behavor on 2.7.
Serhiy Storchaka [Tue, 11 Nov 2014 08:02:57 +0000 (10:02 +0200)]
Issue #22845: Improved formatting of dis documentation.
Serhiy Storchaka [Mon, 10 Nov 2014 10:37:02 +0000 (12:37 +0200)]
Issue #12728: Different Unicode characters having the same uppercase but
different lowercase are now matched in case-insensitive regular expressions.
Serhiy Storchaka [Mon, 10 Nov 2014 08:42:06 +0000 (10:42 +0200)]
Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian
platforms.
Raymond Hettinger [Mon, 10 Nov 2014 01:25:42 +0000 (17:25 -0800)]
Use internal links where possible
Raymond Hettinger [Mon, 10 Nov 2014 01:10:17 +0000 (17:10 -0800)]
Issue 22830: Clarify docs for functools.cmp_to_key().
Raymond Hettinger [Sat, 8 Nov 2014 06:47:30 +0000 (22:47 -0800)]
Remove unused import
Serhiy Storchaka [Fri, 7 Nov 2014 20:31:54 +0000 (22:31 +0200)]
Silence the failure of test_pyclbr after adding a property in sre_parse
(issue #814253).
Serhiy Storchaka [Fri, 7 Nov 2014 19:43:45 +0000 (21:43 +0200)]
Issues #814253, #9179: Group references and conditional group references now
work in lookbehind assertions in regular expressions.
Serhiy Storchaka [Fri, 7 Nov 2014 12:07:43 +0000 (14:07 +0200)]
Backported tests for issue #22406.
Serhiy Storchaka [Fri, 7 Nov 2014 10:19:23 +0000 (12:19 +0200)]
Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat.
Based on patch by Aivars KalvÄns.
Serhiy Storchaka [Fri, 7 Nov 2014 10:02:11 +0000 (12:02 +0200)]
Issue #22769: Fixed ttk.Treeview.tag_has() when called without arguments.
Georg Brandl [Thu, 6 Nov 2014 13:56:47 +0000 (14:56 +0100)]
merge heads
Georg Brandl [Thu, 6 Nov 2014 13:37:49 +0000 (14:37 +0100)]
#22650: test suite: load Unicode test data files from www.pythontest.net
Benjamin Peterson [Thu, 6 Nov 2014 05:52:58 +0000 (00:52 -0500)]
fix test where sizeof(long) != sizeof(int)
Steve Dower [Thu, 6 Nov 2014 04:13:46 +0000 (20:13 -0800)]
Fixes path to patchlevel.py in doc/make.bat
Steve Dower [Thu, 6 Nov 2014 03:16:05 +0000 (19:16 -0800)]
Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (large structs). Patch by mattip
Georg Brandl [Wed, 5 Nov 2014 19:20:28 +0000 (20:20 +0100)]
Closes #22525: clarify documentation for ast.literal_eval().
Benjamin Peterson [Wed, 5 Nov 2014 16:27:14 +0000 (11:27 -0500)]
use pythontest.net for url fragment test
Victor Stinner [Wed, 5 Nov 2014 14:07:18 +0000 (15:07 +0100)]
Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings
Antoine Pitrou [Tue, 4 Nov 2014 13:52:10 +0000 (14:52 +0100)]
Issue #22773: fix failing test with old readline versions due to issue #19884.
Benjamin Peterson [Tue, 4 Nov 2014 02:12:05 +0000 (21:12 -0500)]
allow keyfile argument to be None (closes #22787)
Benjamin Peterson [Tue, 4 Nov 2014 02:05:01 +0000 (21:05 -0500)]
test that keyfile can be None
Serhiy Storchaka [Sun, 2 Nov 2014 20:35:47 +0000 (22:35 +0200)]
Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2.
Patch by Tim Graham.
Ezio Melotti [Sun, 2 Nov 2014 17:08:35 +0000 (19:08 +0200)]
#22751: fix test___all__ warning about modified environment in the tests. Patch by Michael Cetrulo.
Zachary Ware [Sun, 2 Nov 2014 03:34:09 +0000 (22:34 -0500)]
Issue #17896: Move Windows external lib sources from .. to externals.
Ned Deily [Sun, 2 Nov 2014 02:26:45 +0000 (19:26 -0700)]
Issue #22770: Prevent some Tk segfaults on OS X when running gui tests.
When running tests in subprocesses with the regrtest -j option, a bug
in Cocoa Tk can result in a Tcl segfault. Avoid the problem by forcing
Tk to fully initialize as an OS X gui process before destroying the
Tcl instance and creating another. (Original patch by Serhiy Storchaka)
Zachary Ware [Sat, 1 Nov 2014 22:11:08 +0000 (17:11 -0500)]
Issue #17717: Pull NASM from svn.python.org for OpenSSL build.
Vinay Sajip [Sat, 1 Nov 2014 19:56:13 +0000 (19:56 +0000)]
Brought excluded code into the scope of a try block in SysLogHandler.emit().
Georg Brandl [Fri, 31 Oct 2014 12:12:57 +0000 (13:12 +0100)]
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
Serhiy Storchaka [Fri, 31 Oct 2014 11:53:21 +0000 (13:53 +0200)]
Issue #17381: Fixed ranges handling in case-insensitive regular expressions.
Serhiy Storchaka [Fri, 31 Oct 2014 11:34:06 +0000 (13:34 +0200)]
Backported the optimization of compiling charsets in regular expressions
(issue #19329). This is needed to apply the patch from issue #17381.
Georg Brandl [Fri, 31 Oct 2014 08:41:46 +0000 (09:41 +0100)]
#22613: fix several factual errors in builtin docs (thanks Jacques Ducasse)
Georg Brandl [Fri, 31 Oct 2014 09:25:48 +0000 (10:25 +0100)]
#22613: minor other fixes in library docs (thanks Jacques Ducasse)
Georg Brandl [Fri, 31 Oct 2014 09:25:38 +0000 (10:25 +0100)]
#22613: document Cmd.cmdqueue (thanks Jacques Ducasse)
Georg Brandl [Fri, 31 Oct 2014 08:29:38 +0000 (09:29 +0100)]
minor grammar fixes (from docs@python.org)
Serhiy Storchaka [Thu, 30 Oct 2014 23:31:33 +0000 (01:31 +0200)]
Fixed compile error in issue #22410. The _locale module is optional.
Serhiy Storchaka [Thu, 30 Oct 2014 22:53:19 +0000 (00:53 +0200)]
Issue #22410: Module level functions in the re module now cache compiled
locale-dependent regular expressions taking into account the locale.
Georg Brandl [Thu, 30 Oct 2014 21:49:06 +0000 (22:49 +0100)]
rstlint: make the "html leaked markup" regex a bit less sensitive
Georg Brandl [Thu, 30 Oct 2014 21:35:55 +0000 (22:35 +0100)]
rstlint: add more directives we use
Georg Brandl [Thu, 30 Oct 2014 21:26:26 +0000 (22:26 +0100)]
Doc: fix default role usage (except in unittest mock docs)
Antoine Pitrou [Thu, 30 Oct 2014 18:37:07 +0000 (19:37 +0100)]
Issue #8876: distutils now falls back to copying files when hard linking doesn't work.
This allows use with special filesystems such as VirtualBox shared folders.
Georg Brandl [Wed, 29 Oct 2014 09:57:37 +0000 (10:57 +0100)]
Fixing broken links in doc, part 4: some more breaks and redirects
Georg Brandl [Wed, 29 Oct 2014 09:57:01 +0000 (10:57 +0100)]
linkcheck: ignore issue URLs and PEP URLs (the latter until the PEPs are on www.python.org again).
Georg Brandl [Wed, 29 Oct 2014 09:26:56 +0000 (10:26 +0100)]
Fixing broken links in doc, part 3: the rest
Georg Brandl [Wed, 29 Oct 2014 08:37:43 +0000 (09:37 +0100)]
Fixing broken links in doc, part 2: howto/
Georg Brandl [Wed, 29 Oct 2014 08:24:54 +0000 (09:24 +0100)]
Fixing broken links in doc, part 1: faq/
Georg Brandl [Wed, 29 Oct 2014 08:00:30 +0000 (09:00 +0100)]
Fix external links to docs.python.org to use internal links instead.
Georg Brandl [Wed, 29 Oct 2014 07:55:14 +0000 (08:55 +0100)]
Remove now-dead link to IDLE debugger doc and add PyCharm to the commercial IDEs.
Georg Brandl [Wed, 29 Oct 2014 07:52:43 +0000 (08:52 +0100)]
Update "where is python.org hosted" FAQ.
Georg Brandl [Wed, 29 Oct 2014 07:36:35 +0000 (08:36 +0100)]
Use https:// URLs when referring to python.org hosts.
Georg Brandl [Wed, 29 Oct 2014 07:36:15 +0000 (08:36 +0100)]
Use https:// URLs in the HTML templates.
Georg Brandl [Wed, 29 Oct 2014 07:18:43 +0000 (08:18 +0100)]
Doc readme: Fix markup, use https:// URLs.
Georg Brandl [Wed, 29 Oct 2014 07:14:04 +0000 (08:14 +0100)]
Adjust the author field of the .tex files to reflect that docs are now maintained by all of us
Georg Brandl [Wed, 29 Oct 2014 07:41:02 +0000 (08:41 +0100)]
Move Sphinx templates and extensions to their own subdirs.
Georg Brandl [Tue, 28 Oct 2014 22:00:25 +0000 (23:00 +0100)]
Fix link to ABOP install chapter.
Georg Brandl [Tue, 28 Oct 2014 21:52:49 +0000 (22:52 +0100)]
Update Opensolaris advice to OpenCSW instead of defunct Blastwave.
Georg Brandl [Tue, 28 Oct 2014 21:45:27 +0000 (22:45 +0100)]
Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for getaddrinfo() proto param
Georg Brandl [Tue, 28 Oct 2014 20:38:49 +0000 (21:38 +0100)]
Closes #22748: there are no PyString C functions in 3.x.
Georg Brandl [Tue, 28 Oct 2014 20:41:51 +0000 (21:41 +0100)]
Closes #22736: move seealso to the bottom of the section about RE syntax.
Ezio Melotti [Tue, 28 Oct 2014 12:57:12 +0000 (13:57 +0100)]
#22237: fix patch attribution.
Ezio Melotti [Tue, 28 Oct 2014 11:57:11 +0000 (12:57 +0100)]
#22237: document that sorted() is guaranteed to be stable. Initial patch by Martin Panter.
Zachary Ware [Sun, 26 Oct 2014 04:04:33 +0000 (23:04 -0500)]
Update OpenSSL version in PCbuild\readme.txt
Terry Jan Reedy [Thu, 23 Oct 2014 00:15:12 +0000 (20:15 -0400)]
Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
Terry Jan Reedy [Wed, 22 Oct 2014 21:59:53 +0000 (17:59 -0400)]
Issue #16863: Explain difference between text and 2.7 behavior.
Vinay Sajip [Wed, 22 Oct 2014 17:27:59 +0000 (18:27 +0100)]
Updated cookbook entry to replace shutil.chown with os.chown.
Antoine Pitrou [Mon, 20 Oct 2014 22:14:39 +0000 (00:14 +0200)]
Issue #22660: update various mentions in the ssl module documentation.
Benjamin Peterson [Sun, 19 Oct 2014 14:48:50 +0000 (10:48 -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/
Zachary Ware [Sun, 19 Oct 2014 06:06:58 +0000 (01:06 -0500)]
Fix a typo caught by Gabriella Capone on docs@
Terry Jan Reedy [Sat, 18 Oct 2014 21:10:02 +0000 (17:10 -0400)]
Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,
revised by R. David Murray.
R David Murray [Sat, 18 Oct 2014 00:07:08 +0000 (20:07 -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.
Zachary Ware [Fri, 17 Oct 2014 21:20:15 +0000 (16:20 -0500)]
Issue #22644: Update the Windows build to OpenSSL 1.0.1j
Zachary Ware [Thu, 20 Feb 2014 21:36:34 +0000 (15:36 -0600)]
Issue #20221: Removed conflicting (or circular) hypot definition
when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed.
Zachary Ware [Fri, 17 Oct 2014 16:09:13 +0000 (11:09 -0500)]
Fix badly merged NEWS item.
Benjamin Peterson [Fri, 17 Oct 2014 15:30:45 +0000 (11:30 -0400)]
add back NEWS entries removed by
1c2c44313408
Benjamin Peterson [Fri, 17 Oct 2014 15:07:14 +0000 (11:07 -0400)]
remove link to the 'original package specification'; I doubt it's useful anymore (closes #22657)
Vinay Sajip [Fri, 17 Oct 2014 07:42:57 +0000 (08:42 +0100)]
Issue #22646: Accept list as well as tuple to support initialisation via dictConfig().
Terry Jan Reedy [Fri, 17 Oct 2014 05:31:29 +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.