]> granicus.if.org Git - python/log
python
8 years agoIssue #15699: Reunite comment with variable
Martin Panter [Tue, 22 Mar 2016 02:19:29 +0000 (02:19 +0000)]
Issue #15699: Reunite comment with variable

8 years agoIssue #26525: Change ord example from nu to more easily recognized Euro sign.
Terry Jan Reedy [Mon, 21 Mar 2016 01:18:40 +0000 (21:18 -0400)]
Issue #26525: Change ord example from nu to more easily recognized Euro sign.

8 years agoIssue #15660: Further clarify 0 prefix for width specifier in formats.
Terry Jan Reedy [Mon, 21 Mar 2016 01:05:57 +0000 (21:05 -0400)]
Issue #15660: Further clarify 0 prefix for width specifier in formats.

8 years agoIssue #26581: Use the first coding cookie on a line, not the last one.
Serhiy Storchaka [Sun, 20 Mar 2016 21:36:29 +0000 (23:36 +0200)]
Issue #26581: Use the first coding cookie on a line, not the last one.

8 years agoAdded new tests for detecting Python source code encoding.
Serhiy Storchaka [Sun, 20 Mar 2016 20:29:40 +0000 (22:29 +0200)]
Added new tests for detecting Python source code encoding.

8 years agoIssue #12813: uuid.uuid4() no longer depends on ctypes
Berker Peksag [Sun, 20 Mar 2016 15:29:56 +0000 (17:29 +0200)]
Issue #12813: uuid.uuid4() no longer depends on ctypes

uuid.uuid4() always uses os.urandom() after 756d040aa8e8.

8 years agoIssue #19164: Improve exception message of uuid.UUID()
Berker Peksag [Sun, 20 Mar 2016 14:49:10 +0000 (16:49 +0200)]
Issue #19164: Improve exception message of uuid.UUID()

Patch by jgauthier.

8 years agoIssue #26593: Fix typo in logging HOWTO
Berker Peksag [Sun, 20 Mar 2016 10:50:56 +0000 (12:50 +0200)]
Issue #26593: Fix typo in logging HOWTO

Patch by Andrew Szeto.

8 years agoIssue #19265: Improve test coverage of datetime.tzinfo
Berker Peksag [Sat, 19 Mar 2016 11:16:32 +0000 (13:16 +0200)]
Issue #19265: Improve test coverage of datetime.tzinfo

Without the patch, line 1010 of Lib/datetime.py wasn't covered
by the test suite.

Patch by Colin Williams.

8 years agoIssue #26560: Avoid potential ValueError in BaseHandler.start_response
Berker Peksag [Sat, 19 Mar 2016 07:04:59 +0000 (09:04 +0200)]
Issue #26560: Avoid potential ValueError in BaseHandler.start_response

Initial patch by Peter Inglesby.

8 years agoSuggest people use feature detection in porting guide
Brett Cannon [Fri, 18 Mar 2016 20:23:58 +0000 (13:23 -0700)]
Suggest people use feature detection in porting guide

8 years ago#26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv...
Ezio Melotti [Fri, 18 Mar 2016 18:10:36 +0000 (20:10 +0200)]
#26250: document the sqlite3.Cursor.connection attribute.  Initial patches by Aviv Palivoda and Varpu Rantala.

8 years agoIssue #26271: Fix the Freeze tool to use variables passed in from the
Brett Cannon [Fri, 18 Mar 2016 17:29:43 +0000 (10:29 -0700)]
Issue #26271: Fix the Freeze tool to use variables passed in from the
configure script related to compiler flags.

Thanks to Daniel Shaulov for the bug report and patch.

8 years agoFixed a typo.
Serhiy Storchaka [Fri, 18 Mar 2016 12:36:47 +0000 (14:36 +0200)]
Fixed a typo.

8 years agoIssue #26580: Remove outdated reference to ftpmirror
Berker Peksag [Fri, 18 Mar 2016 12:26:08 +0000 (14:26 +0200)]
Issue #26580: Remove outdated reference to ftpmirror

Patch by SilentGhost.

8 years agoIssue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty...
Steve Dower [Thu, 17 Mar 2016 22:02:39 +0000 (15:02 -0700)]
Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch by Baji.

8 years agoIssue #26583: Skip test_timestamp_overflow in test_import if bytecode
Ned Deily [Thu, 17 Mar 2016 21:53:52 +0000 (17:53 -0400)]
Issue #26583: Skip test_timestamp_overflow in test_import if bytecode
files cannot be written.

8 years agoMerge 3.4 into 3.5
Donald Stufft [Thu, 17 Mar 2016 15:01:04 +0000 (11:01 -0400)]
Merge 3.4 into 3.5

8 years agoUpgrade ensurepip._bundled pip to 8.1.1 and setuptools to 20.3
Donald Stufft [Thu, 17 Mar 2016 15:00:08 +0000 (11:00 -0400)]
Upgrade ensurepip._bundled pip to 8.1.1 and setuptools to 20.3

8 years agoFix pyclbr to support importing packages
Victor Stinner [Thu, 17 Mar 2016 08:06:41 +0000 (09:06 +0100)]
Fix pyclbr to support importing packages

Issue #26569: Fix pyclbr.readmodule() and pyclbr.readmodule_ex() to support
importing packages.

8 years agoIssue #17603: Check for st_blocks field without requiring fileblocks.o
Martin Panter [Fri, 18 Mar 2016 02:36:41 +0000 (02:36 +0000)]
Issue #17603: Check for st_blocks field without requiring fileblocks.o

8 years agoPy_FatalError: disable faulthandler earlier
Victor Stinner [Wed, 16 Mar 2016 22:19:15 +0000 (23:19 +0100)]
Py_FatalError: disable faulthandler earlier

Issue #26563: Py_FatalError: disable faulthandler before trying to flush
sys.stdout and sys.stderr.

8 years agoFix usage of PyMem_Malloc() in overlapped.c
Victor Stinner [Wed, 16 Mar 2016 22:25:02 +0000 (23:25 +0100)]
Fix usage of PyMem_Malloc() in overlapped.c

Issue #26563: Replace PyMem_Malloc() with PyMem_RawFree() since
PostToQueueCallback() calls PyMem_RawFree() (previously PyMem_Free()) in a new
C thread which doesn't hold the GIL.

8 years agoIssue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
Martin Panter [Thu, 17 Mar 2016 06:42:48 +0000 (06:42 +0000)]
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost

8 years ago_tracemalloc: store lineno as unsigned int
Victor Stinner [Tue, 15 Mar 2016 20:57:02 +0000 (21:57 +0100)]
_tracemalloc: store lineno as unsigned int

Issue #26564. Cleanup the code, lineno is never negative.

8 years agofaulthandler: Test Py_FatalError() with GIL released
Victor Stinner [Tue, 15 Mar 2016 16:23:35 +0000 (17:23 +0100)]
faulthandler: Test Py_FatalError() with GIL released

Issue #26558.

8 years agoFix Py_FatalError() if called without the GIL
Victor Stinner [Mon, 14 Mar 2016 15:53:12 +0000 (16:53 +0100)]
Fix Py_FatalError() if called without the GIL

Issue #26558: If Py_FatalError() is called without the GIL, don't try to print
the current exception, nor try to flush stdout and stderr: only dump the
traceback of Python threads.

8 years agoIssue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) was untested.
Antoine Pitrou [Tue, 15 Mar 2016 09:48:28 +0000 (10:48 +0100)]
Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) was untested.

8 years ago#25320: Handle sockets in directories unittest discovery is scanning.
Robert Collins [Tue, 15 Mar 2016 00:29:17 +0000 (13:29 +1300)]
#25320: Handle sockets in directories unittest discovery is scanning.

Patch from Victor van den Elzen.

8 years agoFix test_venv on FreeBSD buildbot
Victor Stinner [Mon, 14 Mar 2016 17:21:58 +0000 (18:21 +0100)]
Fix test_venv on FreeBSD buildbot

Ignore pip warning in test_venv.test_with_venv().

8 years agoSkip test_site if USER_SITE cannot be created
Victor Stinner [Mon, 14 Mar 2016 16:47:03 +0000 (17:47 +0100)]
Skip test_site if USER_SITE cannot be created

Issue #17758: Skip test_site if site.USER_SITE directory doesn't exist and
cannot be created.

8 years agoIssue #20556: Used specific assert methods in threading tests.
Serhiy Storchaka [Mon, 14 Mar 2016 08:28:59 +0000 (10:28 +0200)]
Issue #20556: Used specific assert methods in threading tests.

8 years agoIssue #16181: cookiejar.http2time() now returns None if year is higher than datetime...
Berker Peksag [Mon, 14 Mar 2016 03:48:02 +0000 (05:48 +0200)]
Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR

8 years ago#24918: fix CSS for code blocks when a side box is present. Patch by Manvi B.
Ezio Melotti [Sun, 13 Mar 2016 09:41:05 +0000 (11:41 +0200)]
#24918: fix CSS for code blocks when a side box is present.  Patch by Manvi B.

8 years agoMinor recipe edit: convert "while 1" to "while True".
Raymond Hettinger [Sun, 13 Mar 2016 08:12:31 +0000 (00:12 -0800)]
Minor recipe edit:  convert "while 1" to "while True".

8 years ago#25687: clarify that errors in tearDown increase the total number of reported errors...
Ezio Melotti [Sun, 13 Mar 2016 07:40:09 +0000 (09:40 +0200)]
#25687: clarify that errors in tearDown increase the total number of reported errors.  Initial patch by HyeSoo Park.

8 years agoIssue #26548: Minor fix to awkward wording in docs
Raymond Hettinger [Sun, 13 Mar 2016 06:58:24 +0000 (22:58 -0800)]
Issue #26548:  Minor fix to awkward wording in docs

8 years agoIssue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel.
Steve Dower [Sat, 12 Mar 2016 16:38:55 +0000 (08:38 -0800)]
Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel.

8 years agoIssue #23606: Adds note to ctypes documentation regarding cdll.msvcrt.
Steve Dower [Sat, 12 Mar 2016 16:25:22 +0000 (08:25 -0800)]
Issue #23606: Adds note to ctypes documentation regarding cdll.msvcrt.

8 years agoIssue #26513: Fixes platform module detection of Windows Server
Steve Dower [Sat, 12 Mar 2016 16:06:23 +0000 (08:06 -0800)]
Issue #26513: Fixes platform module detection of Windows Server

8 years agoIssue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by
Serhiy Storchaka [Sat, 12 Mar 2016 08:51:16 +0000 (10:51 +0200)]
Issue #23718: Fixed parsing time in week 0 before Jan 1.  Original patch by
Tamás Bence Gedai.

8 years agoIssue #20589: Fix test_pathlib
Victor Stinner [Fri, 11 Mar 2016 21:53:00 +0000 (22:53 +0100)]
Issue #20589: Fix test_pathlib

8 years agoIssue #26542: Fix markup of code example in difflib documentation
Berker Peksag [Fri, 11 Mar 2016 21:19:48 +0000 (23:19 +0200)]
Issue #26542: Fix markup of code example in difflib documentation

Patch by Dmitry Shachnev.

8 years agoIssue #20589: Invoking Path.owner() and Path.group() on Windows now raise
Berker Peksag [Fri, 11 Mar 2016 21:07:27 +0000 (23:07 +0200)]
Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise
NotImplementedError instead of ImportError.

8 years agoIssue 25959: Explain in docstring that PhotoImage.zoom arguments are
Terry Jan Reedy [Fri, 11 Mar 2016 20:30:35 +0000 (15:30 -0500)]
Issue 25959: Explain in docstring that PhotoImage.zoom arguments are
multipliers, not final sizes.  Explain y default for .zoom and .subsample.
Initial patch by Serhiy Storchaka.

8 years agoIssue #26516: Enhance Python mem allocators doc
Victor Stinner [Wed, 9 Mar 2016 13:49:52 +0000 (14:49 +0100)]
Issue #26516: Enhance Python mem allocators doc

* add link to PYTHONMALLOCSTATS env var
* add parameters to PyMem macros like PyMem_MALLOC()
* fix PyMem_SetupDebugHooks(): add Calloc functions
* add some newlines for readability

8 years agoIssue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.
Serhiy Storchaka [Wed, 9 Mar 2016 08:33:51 +0000 (10:33 +0200)]
Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.
Added few missed tests for configure options.

8 years agoIssue #15068: Avoid creating a reference loop in fileinput.
Serhiy Storchaka [Tue, 8 Mar 2016 21:35:35 +0000 (23:35 +0200)]
Issue #15068: Avoid creating a reference loop in fileinput.

8 years agoBacks out buildbot clean trigger.
Steve Dower [Tue, 8 Mar 2016 21:10:29 +0000 (13:10 -0800)]
Backs out buildbot clean trigger.

8 years agoAdds warning to prepare_ssl when nasm is not available.
Steve Dower [Tue, 8 Mar 2016 20:50:57 +0000 (12:50 -0800)]
Adds warning to prepare_ssl when nasm is not available.
Force clean of externals on buildbots.

8 years agoIssue #25911: Tring to silence deprecation warnings in bytes path walk tests.
Serhiy Storchaka [Tue, 8 Mar 2016 19:26:26 +0000 (21:26 +0200)]
Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.

8 years agoBacked out changeset f9e22717722d
Serhiy Storchaka [Tue, 8 Mar 2016 19:15:43 +0000 (21:15 +0200)]
Backed out changeset f9e22717722d

8 years agoBacked out changeset 19a3e0e664af
Serhiy Storchaka [Tue, 8 Mar 2016 19:13:35 +0000 (21:13 +0200)]
Backed out changeset 19a3e0e664af

8 years agoIssue #26465: Update Windows builds to use OpenSSL 1.0.2g.
Steve Dower [Tue, 8 Mar 2016 18:26:52 +0000 (10:26 -0800)]
Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.

8 years agoIssue #15068: Got rid of excessive buffering in the fileinput module.
Serhiy Storchaka [Tue, 8 Mar 2016 16:28:36 +0000 (18:28 +0200)]
Issue #15068: Got rid of excessive buffering in the fileinput module.
The bufsize parameter is no longer used.

8 years agoIssues #23808, #25911: Trying to fix walk tests on Windows.
Serhiy Storchaka [Tue, 8 Mar 2016 14:12:09 +0000 (16:12 +0200)]
Issues #23808, #25911: Trying to fix walk tests on Windows.

On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag.

8 years agoIssues #23808, #25911: Trying to fix walk tests on Windows.
Serhiy Storchaka [Tue, 8 Mar 2016 14:11:26 +0000 (16:11 +0200)]
Issues #23808, #25911: Trying to fix walk tests on Windows.

On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag.

8 years agoIssue #26465: Update OS X installer build to use OpenSSL 1.0.2g.
Ned Deily [Tue, 8 Mar 2016 06:09:08 +0000 (01:09 -0500)]
Issue #26465: Update OS X installer build to use OpenSSL 1.0.2g.

8 years agoIssue #24324: Do not enable unreachable code warnings when using
Ned Deily [Tue, 8 Mar 2016 05:28:37 +0000 (00:28 -0500)]
Issue #24324: Do not enable unreachable code warnings when using
gcc as the option does not work correctly in older versions of gcc
and has been silently removed as of gcc-4.5.

8 years agoIssue #26505: Fix typos in getaddrinfo license text.
Ned Deily [Mon, 7 Mar 2016 19:51:59 +0000 (14:51 -0500)]
Issue #26505: Fix typos in getaddrinfo license text.
Patch by Alex Willmer.

8 years agoIssue #24852: Remove outdated "HOWTO Use Python in the web" document
Berker Peksag [Mon, 7 Mar 2016 17:00:47 +0000 (19:00 +0200)]
Issue #24852: Remove outdated "HOWTO Use Python in the web" document

8 years agoIssue #21034: Remove outdated paragraph from venv documentation
Berker Peksag [Mon, 7 Mar 2016 16:50:49 +0000 (18:50 +0200)]
Issue #21034: Remove outdated paragraph from venv documentation

Since Python 3.4, there is no need to install pip and setuptools
into a venv manually.

8 years agoDocument another recipe for itertools: all_equal(). Inspired by David Beazley.
Raymond Hettinger [Mon, 7 Mar 2016 02:11:38 +0000 (18:11 -0800)]
Document another recipe for itertools:  all_equal().  Inspired by David Beazley.

8 years agoIssue #26489: Add dictionary unpacking support to Tools/parser/unparse.py
Berker Peksag [Sun, 6 Mar 2016 14:50:15 +0000 (16:50 +0200)]
Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py

Patch by Guo Ci Teo.

8 years agoIssue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls
Berker Peksag [Sun, 6 Mar 2016 14:16:40 +0000 (16:16 +0200)]
Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls

Raise ValueError if algorithm is not MD5 or SHA.

Initial patch by Mathieu Dupuy.

8 years agoIssue #26167: Backported copy tests.
Serhiy Storchaka [Sun, 6 Mar 2016 13:03:07 +0000 (15:03 +0200)]
Issue #26167: Backported copy tests.

8 years agoIssue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka [Sun, 6 Mar 2016 12:10:24 +0000 (14:10 +0200)]
Issue #26015: Added new tests for pickling iterators of mutable sequences.

8 years agoIssue #25718: Fixed pickling and copying the accumulate() iterator with total is...
Serhiy Storchaka [Sun, 6 Mar 2016 12:00:45 +0000 (14:00 +0200)]
Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None.

8 years agoIssue #26475: Fixed debugging output for regular expressions with the (?x) flag.
Serhiy Storchaka [Sun, 6 Mar 2016 07:15:47 +0000 (09:15 +0200)]
Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.

8 years agoFixed typo in pickle tests.
Serhiy Storchaka [Fri, 4 Mar 2016 07:39:47 +0000 (09:39 +0200)]
Fixed typo in pickle tests.

8 years agomerge 3.4 (closes #26478)
Benjamin Peterson [Fri, 4 Mar 2016 06:08:01 +0000 (22:08 -0800)]
merge 3.4 (closes #26478)

8 years agoproperly use the ObjArgs variant of CallMethod in dictview binary operations (closes...
Benjamin Peterson [Fri, 4 Mar 2016 06:05:36 +0000 (22:05 -0800)]
properly use the ObjArgs variant of CallMethod in dictview binary operations (closes #26478)

8 years agoIssue #26246: Set initial value of the hidden attr when creating copy button.
Berker Peksag [Wed, 2 Mar 2016 17:40:30 +0000 (19:40 +0200)]
Issue #26246: Set initial value of the hidden attr when creating copy button.

Patch by Liang-Bo Wang.

8 years agoIssue #26246: Set initial value of the hidden attr when creating copy button.
Berker Peksag [Wed, 2 Mar 2016 17:40:08 +0000 (19:40 +0200)]
Issue #26246: Set initial value of the hidden attr when creating copy button.

Patch by Liang-Bo Wang.

8 years agocoroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov [Wed, 2 Mar 2016 16:30:46 +0000 (11:30 -0500)]
coroutines: Error when awaiting on coroutine that's being awaited

Issue #25888

8 years agoasyncio: Remove duplicate bind addresses in create_server.
Yury Selivanov [Wed, 2 Mar 2016 16:17:01 +0000 (11:17 -0500)]
asyncio: Remove duplicate bind addresses in create_server.

Patch by Sebastien Bourdeauducq (issue #26338)

8 years agoinspect: Fix BoundArguments.apply_defaults to handle empty arguments
Yury Selivanov [Wed, 2 Mar 2016 16:07:47 +0000 (11:07 -0500)]
inspect: Fix BoundArguments.apply_defaults to handle empty arguments

Patch by Frederick Wagner (issue #26347)

8 years agoasyncio: Prevent StopIteration from being thrown into a Future
Yury Selivanov [Wed, 2 Mar 2016 16:03:28 +0000 (11:03 -0500)]
asyncio: Prevent StopIteration from being thrown into a Future

Patch by Chris Angelico (issue #26221)

8 years agoasyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)
Yury Selivanov [Wed, 2 Mar 2016 15:49:16 +0000 (10:49 -0500)]
asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)

Patch by Vladimir Rutsky.

8 years agoasyncio, selectors: Update to the upstream version
Yury Selivanov [Wed, 2 Mar 2016 15:37:59 +0000 (10:37 -0500)]
asyncio, selectors: Update to the upstream version

8 years agoMerge 3.4
Yury Selivanov [Wed, 2 Mar 2016 15:33:47 +0000 (10:33 -0500)]
Merge 3.4

8 years agoasyncio: Update 3.4 asyncio/test_tasks to upstream version
Yury Selivanov [Wed, 2 Mar 2016 15:33:22 +0000 (10:33 -0500)]
asyncio: Update 3.4 asyncio/test_tasks to upstream version

8 years agoIssue #26464: Fix unicode_fast_translate() again
Victor Stinner [Tue, 1 Mar 2016 20:59:58 +0000 (21:59 +0100)]
Issue #26464: Fix unicode_fast_translate() again

Initialize i variable if the string is non-ASCII.

8 years agoFix str.translate()
Victor Stinner [Tue, 1 Mar 2016 20:30:30 +0000 (21:30 +0100)]
Fix str.translate()

Issue #26464: Fix str.translate() when string is ASCII and first replacements
removes character, but next replacement uses a non-ASCII character or a string
longer than 1 character. Regression introduced in Python 3.5.0.

8 years agoIssue #26457: Fixed the subnets() methods in IP network classes for the case
Serhiy Storchaka [Tue, 1 Mar 2016 08:25:45 +0000 (10:25 +0200)]
Issue #26457: Fixed the subnets() methods in IP network classes for the case
when resulting prefix length is equal to maximal prefix length.
Based on patch by Xiang Zhang.

8 years agoWhitespace
Terry Jan Reedy [Tue, 1 Mar 2016 06:18:47 +0000 (01:18 -0500)]
Whitespace

8 years agoDocument maintenance of idlelib/help.html in idlelib.
Terry Jan Reedy [Tue, 1 Mar 2016 06:13:07 +0000 (01:13 -0500)]
Document maintenance of idlelib/help.html in idlelib.

8 years agoRebase the 3.x version of idlelib/help.html on the 3.5 version of
Terry Jan Reedy [Tue, 1 Mar 2016 05:29:57 +0000 (00:29 -0500)]
Rebase the 3.x version of idlelib/help.html on the 3.5 version of
Doc/build/html/library/idle.html, which is built from Doc/library/idle.rst.
Help.html is an rstrip()ed copy of idle.html that can be pushed.

The displayed content is unchanged because a) the version number is not
displayed, being inherent in the version displaying the file and b) the tt
tag was ignored by the custom parser in idlelib/help.py.  The wrapped
<span class="pre"> tags remain as they were.

This will be merged in 3.6 (without conflict) because the 3.6 help.html is
a copy of the 3.5 file (which was a copy of the 3.4 file).  The two files will
remain the same until either a) there is a content change that only applies
to one of them or b) 3.5 maintenance ends and the 3.6 file is itself rebased.

8 years agoIssue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost
Martin Panter [Sun, 28 Feb 2016 05:22:20 +0000 (05:22 +0000)]
Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost

8 years agoUpdate susp-ignore file (#25910).
Georg Brandl [Sun, 28 Feb 2016 20:13:23 +0000 (21:13 +0100)]
Update susp-ignore file (#25910).

8 years agoFix typo.
Georg Brandl [Sun, 28 Feb 2016 20:09:36 +0000 (21:09 +0100)]
Fix typo.

8 years agoIssue #22836: Keep exception reports sensible despite errors
Martin Panter [Sun, 28 Feb 2016 03:16:11 +0000 (03:16 +0000)]
Issue #22836: Keep exception reports sensible despite errors

8 years ago#26246: merge with 3.4.
Ezio Melotti [Sat, 27 Feb 2016 06:41:16 +0000 (08:41 +0200)]
#26246: merge with 3.4.

8 years ago#26246: update copybutton.js after JQuery update. Patch by Liang-Bo Wang.
Ezio Melotti [Sat, 27 Feb 2016 06:39:36 +0000 (08:39 +0200)]
#26246: update copybutton.js after JQuery update.  Patch by Liang-Bo Wang.

8 years agoCloses #25910: fix dead and permanently redirected links in the docs. Thanks to Silen...
Georg Brandl [Fri, 26 Feb 2016 18:37:12 +0000 (19:37 +0100)]
Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.

8 years agoFix version.
Georg Brandl [Fri, 26 Feb 2016 18:17:39 +0000 (19:17 +0100)]
Fix version.

8 years agoCloses #26442: fix copy-paste.
Georg Brandl [Fri, 26 Feb 2016 18:16:40 +0000 (19:16 +0100)]
Closes #26442: fix copy-paste.

8 years agoCloses #26444: typo fixes.
Georg Brandl [Fri, 26 Feb 2016 18:13:47 +0000 (19:13 +0100)]
Closes #26444: typo fixes.

8 years agoopen the cert store readonly
Benjamin Peterson [Thu, 18 Feb 2016 06:13:19 +0000 (22:13 -0800)]
open the cert store readonly

Patch from Chi Hsuan Yen.

9 years agoIssue #24421: Compile _math.c separately to avoid race condition
Martin Panter [Wed, 3 Feb 2016 05:19:44 +0000 (05:19 +0000)]
Issue #24421: Compile _math.c separately to avoid race condition