]> granicus.if.org Git - python/log
python
10 years agoMerge with 3.4
Georg Brandl [Wed, 25 Feb 2015 12:07:03 +0000 (13:07 +0100)]
Merge with 3.4

10 years agoRemove unsupported (in latex) character from the source.
Georg Brandl [Wed, 25 Feb 2015 12:05:53 +0000 (13:05 +0100)]
Remove unsupported (in latex) character from the source.

10 years agoIssue 23314: SuppressCrashReports now disables CRT assertions
Steve Dower [Mon, 23 Feb 2015 15:56:13 +0000 (07:56 -0800)]
Issue 23314: SuppressCrashReports now disables CRT assertions
SuppressCrashReports should be used in test subprocesses that test invalid conditions.

10 years agoMerge 3.4 (asyncio doc)
Victor Stinner [Mon, 23 Feb 2015 10:42:22 +0000 (11:42 +0100)]
Merge 3.4 (asyncio doc)

10 years agoasyncio doc: close explicitly event loops
Victor Stinner [Mon, 23 Feb 2015 10:41:56 +0000 (11:41 +0100)]
asyncio doc: close explicitly event loops

10 years agoIssue #23499: Fix grammar error noticed by SilentGhost
Ned Deily [Mon, 23 Feb 2015 00:15:14 +0000 (16:15 -0800)]
Issue #23499: Fix grammar error noticed by SilentGhost

10 years agoIssue #23499: Fix grammar error noticed by SilentGhost
Ned Deily [Mon, 23 Feb 2015 00:14:32 +0000 (16:14 -0800)]
Issue #23499: Fix grammar error noticed by SilentGhost

10 years agoBroke reference loops in tests added in issue #5700.
Serhiy Storchaka [Sun, 22 Feb 2015 22:31:33 +0000 (00:31 +0200)]
Broke reference loops in tests added in issue #5700.

10 years agoBroke reference loops in tests added in issue #5700.
Serhiy Storchaka [Sun, 22 Feb 2015 22:28:38 +0000 (00:28 +0200)]
Broke reference loops in tests added in issue #5700.

10 years agoIssue #23152: Move declarations back to posixmodule.c.
Serhiy Storchaka [Sun, 22 Feb 2015 19:34:54 +0000 (21:34 +0200)]
Issue #23152: Move declarations back to posixmodule.c.

Declarations of Windows-specific auxilary functions need Windows types
from windows.h.  Instead of including windows.h in Python.h and making
it available to all Windows users, it is simpler and safer just move
declarations to the single file that needs them.

10 years agoIssue #23152: Move declaration into a header and exclude from stable API.
Serhiy Storchaka [Sun, 22 Feb 2015 17:39:36 +0000 (19:39 +0200)]
Issue #23152: Move declaration into a header and exclude from stable API.

10 years agoIssue #6639: Module-level turtle functions no longer raise TclError after
Serhiy Storchaka [Sun, 22 Feb 2015 15:26:35 +0000 (17:26 +0200)]
Issue #6639: Module-level turtle functions no longer raise TclError after
closing the window.

10 years agoIssue #6639: Module-level turtle functions no longer raise TclError after
Serhiy Storchaka [Sun, 22 Feb 2015 15:25:33 +0000 (17:25 +0200)]
Issue #6639: Module-level turtle functions no longer raise TclError after
closing the window.

10 years agoIssue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused...
Steve Dower [Sat, 21 Feb 2015 23:26:02 +0000 (15:26 -0800)]
Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused struct win32_stat and return value

10 years agoIssue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat
Steve Dower [Sat, 21 Feb 2015 18:04:10 +0000 (10:04 -0800)]
Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat

10 years agoIssue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows.
Steve Dower [Sat, 21 Feb 2015 16:44:05 +0000 (08:44 -0800)]
Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows.
fstat() may fail with EOVERFLOW on files larger than 2 GB because the file size type is an signed 32-bit integer.

10 years agoNull merge
Serhiy Storchaka [Sat, 21 Feb 2015 10:10:59 +0000 (12:10 +0200)]
Null merge

10 years agoIssues #814253, #9179: Warnings now are raised when group references and
Serhiy Storchaka [Sat, 21 Feb 2015 10:08:52 +0000 (12:08 +0200)]
Issues #814253, #9179: Warnings now are raised when group references and
conditional group references are used in lookbehind assertions in regular
expressions.

10 years agoIssues #814253, #9179: Group references and conditional group references now
Serhiy Storchaka [Sat, 21 Feb 2015 08:07:35 +0000 (10:07 +0200)]
Issues #814253, #9179: Group references and conditional group references now
work in lookbehind assertions in regular expressions.

10 years agoIssue #23215: Multibyte codecs with custom error handlers that ignores errors
Serhiy Storchaka [Fri, 20 Feb 2015 23:21:08 +0000 (01:21 +0200)]
Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError.
Original patch by Aleksi Torhamo.

10 years agoIssue #23215: Multibyte codecs with custom error handlers that ignores errors
Serhiy Storchaka [Fri, 20 Feb 2015 23:19:58 +0000 (01:19 +0200)]
Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError.
Original patch by Aleksi Torhamo.

10 years agoIssue #5700: io.FileIO() called flush() after closing the file.
Serhiy Storchaka [Fri, 20 Feb 2015 22:35:53 +0000 (00:35 +0200)]
Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.

10 years agoIssue #5700: io.FileIO() called flush() after closing the file.
Serhiy Storchaka [Fri, 20 Feb 2015 22:35:09 +0000 (00:35 +0200)]
Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.

10 years agoIssue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
Serhiy Storchaka [Fri, 20 Feb 2015 21:47:09 +0000 (23:47 +0200)]
Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
differs from file system encoding (e.g. on Mac OS).

10 years agoIssue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
Serhiy Storchaka [Fri, 20 Feb 2015 21:46:06 +0000 (23:46 +0200)]
Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
differs from file system encoding (e.g. on Mac OS).

10 years agoIssue #23490: Fixed possible crashes related to interoperability between
Serhiy Storchaka [Fri, 20 Feb 2015 19:34:39 +0000 (21:34 +0200)]
Issue #23490: Fixed possible crashes related to interoperability between
old-style and new API for string with 2**30-1 characters.

10 years agoIssue #23490: Fixed possible crashes related to interoperability between
Serhiy Storchaka [Fri, 20 Feb 2015 19:34:06 +0000 (21:34 +0200)]
Issue #23490: Fixed possible crashes related to interoperability between
old-style and new API for string with 2**30-1 characters.

10 years agoCloses #23018: Replace copyright symbol with escape.
Steve Dower [Fri, 20 Feb 2015 17:08:48 +0000 (09:08 -0800)]
Closes #23018: Replace copyright symbol with escape.

10 years agoRemoves unused string resources from Windows installer.
Steve Dower [Fri, 20 Feb 2015 16:23:23 +0000 (08:23 -0800)]
Removes unused string resources from Windows installer.

10 years agoIssue #23422: Clarify some things around importlib.import_module()
Brett Cannon [Fri, 20 Feb 2015 15:34:20 +0000 (10:34 -0500)]
Issue #23422: Clarify some things around importlib.import_module()

10 years agoIssue #22834: Fix a failing test under Solaris due to the platform not
Brett Cannon [Fri, 20 Feb 2015 14:48:18 +0000 (09:48 -0500)]
Issue #22834: Fix a failing test under Solaris due to the platform not
allowing the deletion of the cwd.

Thanks to Martin Panter for the initial fix.

10 years agoIssue #23442: Rename two member names to stay backward compatible
Berker Peksag [Fri, 20 Feb 2015 12:57:31 +0000 (14:57 +0200)]
Issue #23442: Rename two member names to stay backward compatible
with the constants in http.client.

Initial patch by Demian Brecht.

10 years agoRegenerated Argument Clinic checksums.
Serhiy Storchaka [Fri, 20 Feb 2015 10:46:11 +0000 (12:46 +0200)]
Regenerated Argument Clinic checksums.

10 years agoImprove struct cache locality by bring commonly accessed fields close together.
Raymond Hettinger [Fri, 20 Feb 2015 08:50:04 +0000 (00:50 -0800)]
Improve struct cache locality by bring commonly accessed fields close together.

10 years agoIssue #23439: Add missing entries to http.client.__all__.
Berker Peksag [Fri, 20 Feb 2015 07:45:05 +0000 (09:45 +0200)]
Issue #23439: Add missing entries to http.client.__all__.

Also, document the LineTooLong exception since it can be raised by
the members of public API (e.g. http.client.HTTPResponse).

Patch by Martin Panter.

10 years agoIssue #23439: Add missing entries to http.client.__all__.
Berker Peksag [Fri, 20 Feb 2015 07:39:38 +0000 (09:39 +0200)]
Issue #23439: Add missing entries to http.client.__all__.

Also, document the LineTooLong exception since it can be raised by
the members of public API (e.g. http.client.HTTPResponse).

Patch by Martin Panter.

10 years agoNull merge with 3.4
Zachary Ware [Fri, 20 Feb 2015 04:31:29 +0000 (22:31 -0600)]
Null merge with 3.4

(Typo was already fixed on this branch.)

10 years agoFix typo pointed out on docs@ by Yaniv Sayeh
Zachary Ware [Fri, 20 Feb 2015 04:30:15 +0000 (22:30 -0600)]
Fix typo pointed out on docs@ by Yaniv Sayeh

10 years agoMerge with 3.4
Zachary Ware [Fri, 20 Feb 2015 04:15:54 +0000 (22:15 -0600)]
Merge with 3.4

10 years agoFix a typo pointed out on docs@
Zachary Ware [Fri, 20 Feb 2015 04:15:36 +0000 (22:15 -0600)]
Fix a typo pointed out on docs@

10 years agomerge 3.4 (#23481)
Benjamin Peterson [Thu, 19 Feb 2015 22:58:19 +0000 (17:58 -0500)]
merge 3.4 (#23481)

10 years agoremove rc4 from the default client ciphers (closes #23481)
Benjamin Peterson [Thu, 19 Feb 2015 22:57:08 +0000 (17:57 -0500)]
remove rc4 from the default client ciphers (closes #23481)

10 years agoCloses #23482: sqlite3_d.dll is not included in installer
Steve Dower [Thu, 19 Feb 2015 02:02:22 +0000 (18:02 -0800)]
Closes #23482: sqlite3_d.dll is not included in installer

10 years agomerge 3.4
Benjamin Peterson [Wed, 18 Feb 2015 13:56:47 +0000 (08:56 -0500)]
merge 3.4

10 years agomerge heads
Benjamin Peterson [Wed, 18 Feb 2015 13:56:43 +0000 (08:56 -0500)]
merge heads

10 years agomerge heads
Benjamin Peterson [Wed, 18 Feb 2015 13:56:33 +0000 (08:56 -0500)]
merge heads

10 years agomerge 3.4
Benjamin Peterson [Wed, 18 Feb 2015 13:55:59 +0000 (08:55 -0500)]
merge 3.4

10 years agomerge 3.3
Benjamin Peterson [Wed, 18 Feb 2015 13:55:38 +0000 (08:55 -0500)]
merge 3.3

10 years agomerge 3.2
Benjamin Peterson [Wed, 18 Feb 2015 13:54:22 +0000 (08:54 -0500)]
merge 3.2

10 years agoremove RPM, since it's unused and unmaintained
Benjamin Peterson [Wed, 18 Feb 2015 13:52:46 +0000 (08:52 -0500)]
remove RPM, since it's unused and unmaintained

10 years agoIssue #23474: Enhanced locale testing.
Serhiy Storchaka [Wed, 18 Feb 2015 06:05:05 +0000 (08:05 +0200)]
Issue #23474: Enhanced locale testing.

10 years agoIssue #23474: Enhanced locale testing.
Serhiy Storchaka [Wed, 18 Feb 2015 06:04:37 +0000 (08:04 +0200)]
Issue #23474: Enhanced locale testing.

10 years agomerge 3.4 (#23410)
Benjamin Peterson [Wed, 18 Feb 2015 02:13:30 +0000 (21:13 -0500)]
merge 3.4 (#23410)

10 years agodocument the requestline and close_connection attributes, use real booleans, and...
Benjamin Peterson [Wed, 18 Feb 2015 02:11:10 +0000 (21:11 -0500)]
document the requestline and close_connection attributes, use real booleans, and add tests (closes #23410)

Patch by Martin Panter.

10 years agoMerge 3.4 (asyncio)
Victor Stinner [Tue, 17 Feb 2015 22:36:19 +0000 (23:36 +0100)]
Merge 3.4 (asyncio)

10 years agoasyncio: Fix warning in test_close_kill_running()
Victor Stinner [Tue, 17 Feb 2015 22:36:02 +0000 (23:36 +0100)]
asyncio: Fix warning in test_close_kill_running()

Read process exit status to avoid the "Caught subprocess termination from
unknown pid" message.

10 years agoMerge 3.4 (asyncio doc)
Victor Stinner [Tue, 17 Feb 2015 22:11:56 +0000 (23:11 +0100)]
Merge 3.4 (asyncio doc)

10 years agoasyncio, Tulip issue 220: Update doc of asyncio.Queue, add join and task_done
Victor Stinner [Tue, 17 Feb 2015 22:09:52 +0000 (23:09 +0100)]
asyncio, Tulip issue 220: Update doc of asyncio.Queue, add join and task_done
methods

10 years agoasyncio doc: fix the sphinx extension for coroutine commands
Victor Stinner [Tue, 17 Feb 2015 22:08:35 +0000 (23:08 +0100)]
asyncio doc: fix the sphinx extension for coroutine commands

10 years agoMerge 3.4 (asyncio)
Victor Stinner [Tue, 17 Feb 2015 21:55:36 +0000 (22:55 +0100)]
Merge 3.4 (asyncio)

10 years agoIssue #23475, asyncio: Fix test_close_kill_running()
Victor Stinner [Tue, 17 Feb 2015 21:54:11 +0000 (22:54 +0100)]
Issue #23475, asyncio: Fix test_close_kill_running()

Really kill the child process, don't mock completly the Popen.kill() method.

This change fix memory leaks and reference leaks.

10 years agoasyncio, Tulip issue 220: Merge JoinableQueue with Queue.
Victor Stinner [Tue, 17 Feb 2015 21:53:28 +0000 (22:53 +0100)]
asyncio, Tulip issue 220: Merge JoinableQueue with Queue.

Merge JoinableQueue with Queue. To more closely match the standard Queue,
asyncio.Queue has "join" and "task_done". JoinableQueue is deleted.

Docstring for Queue.join shouldn't mention threads.

Restore JoinableQueue as a deprecated alias for Queue. To more closely match
the standard Queue, asyncio.Queue has "join" and "task_done".  JoinableQueue
remains as a deprecated alias for Queue to avoid needlessly breaking too much
code that depended on it.

Patch written by A. Jesse Jiryu Davis <jesse@mongodb.com>.

10 years agoasyncio: BaseSubprocessTransport: repr() mentions when the child process is
Victor Stinner [Tue, 17 Feb 2015 21:50:33 +0000 (22:50 +0100)]
asyncio: BaseSubprocessTransport: repr() mentions when the child process is
running

10 years agoIssue #22883: Update PyInt to PyLong in C API example.
Serhiy Storchaka [Tue, 17 Feb 2015 08:19:07 +0000 (10:19 +0200)]
Issue #22883: Update PyInt to PyLong in C API example.

10 years agoIssue #22883: Update PyInt to PyLong in C API example.
Serhiy Storchaka [Tue, 17 Feb 2015 08:18:44 +0000 (10:18 +0200)]
Issue #22883: Update PyInt to PyLong in C API example.

10 years agoIssue #22883: Got rid of outdated references to PyInt and PyString in comments.
Serhiy Storchaka [Tue, 17 Feb 2015 08:14:30 +0000 (10:14 +0200)]
Issue #22883: Got rid of outdated references to PyInt and PyString in comments.

10 years agomerge 3.4 (#21548)
Benjamin Peterson [Tue, 17 Feb 2015 00:45:42 +0000 (19:45 -0500)]
merge 3.4 (#21548)

10 years agofix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)
Benjamin Peterson [Tue, 17 Feb 2015 00:45:01 +0000 (19:45 -0500)]
fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)

Patch by Yuyang Guo and Berker Peksag.

10 years agoFixed sizeof tests for ElementTree (issue #23450).
Serhiy Storchaka [Mon, 16 Feb 2015 21:58:46 +0000 (23:58 +0200)]
Fixed sizeof tests for ElementTree (issue #23450).

10 years agoIssue #23450: Silenced compiler warnings and added asserts in peephole optimizer.
Serhiy Storchaka [Mon, 16 Feb 2015 19:13:24 +0000 (21:13 +0200)]
Issue #23450: Silenced compiler warnings and added asserts in peephole optimizer.

10 years agoNull merge
Serhiy Storchaka [Mon, 16 Feb 2015 18:54:23 +0000 (20:54 +0200)]
Null merge

10 years agoShoould be Py_MIN, not Py_MAX.
Serhiy Storchaka [Mon, 16 Feb 2015 18:54:03 +0000 (20:54 +0200)]
Shoould be Py_MIN, not Py_MAX.

10 years agoIssue #23450: Fixed possible integer overflows.
Serhiy Storchaka [Mon, 16 Feb 2015 18:52:17 +0000 (20:52 +0200)]
Issue #23450: Fixed possible integer overflows.

10 years agoIssue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer
Serhiy Storchaka [Mon, 16 Feb 2015 11:33:32 +0000 (13:33 +0200)]
Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer
overflows.  Added few missed PyErr_NoMemory().

10 years agoIssue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer
Serhiy Storchaka [Mon, 16 Feb 2015 11:28:22 +0000 (13:28 +0200)]
Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer
overflows.  Added few missed PyErr_NoMemory().

10 years agoFixed few compiler warnings.
Serhiy Storchaka [Mon, 16 Feb 2015 07:40:12 +0000 (09:40 +0200)]
Fixed few compiler warnings.

10 years agoIssue #20069: Fixed test_os on Solaris: error message is platform depended.
Serhiy Storchaka [Mon, 16 Feb 2015 06:35:18 +0000 (08:35 +0200)]
Issue #20069: Fixed test_os on Solaris: error message is platform depended.

10 years agoIssue #17753: effective_ids unavailable on Windows.
Berker Peksag [Mon, 16 Feb 2015 02:36:43 +0000 (04:36 +0200)]
Issue #17753: effective_ids unavailable on Windows.

10 years agoIssue #17753: effective_ids unavailable on Windows.
Berker Peksag [Mon, 16 Feb 2015 02:36:18 +0000 (04:36 +0200)]
Issue #17753: effective_ids unavailable on Windows.

10 years agoFix typo in os.supports_effective_ids documentation.
Berker Peksag [Mon, 16 Feb 2015 01:36:45 +0000 (03:36 +0200)]
Fix typo in os.supports_effective_ids documentation.

10 years agoFix typo in os.supports_effective_ids documentation.
Berker Peksag [Mon, 16 Feb 2015 01:36:10 +0000 (03:36 +0200)]
Fix typo in os.supports_effective_ids documentation.

10 years agoIssue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
Serhiy Storchaka [Sun, 15 Feb 2015 22:32:41 +0000 (00:32 +0200)]
Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
module.  Original patch by Claudiu Popa.

10 years agoIssue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
Serhiy Storchaka [Sun, 15 Feb 2015 22:30:43 +0000 (00:30 +0200)]
Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
module.  Original patch by Claudiu Popa.

10 years agoIssue #23239: ssl.match_hostname() now supports matching of IP addresses.
Antoine Pitrou [Sun, 15 Feb 2015 17:12:20 +0000 (18:12 +0100)]
Issue #23239: ssl.match_hostname() now supports matching of IP addresses.

10 years agoIssue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
Antoine Pitrou [Sun, 15 Feb 2015 17:06:54 +0000 (18:06 +0100)]
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.

Detected and fixed by Serhiy.

10 years agoIssue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
Antoine Pitrou [Sun, 15 Feb 2015 17:03:59 +0000 (18:03 +0100)]
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.

Detected and fixed by Serhiy.

10 years agoIssue #19681: Test the repr of partial with more than one keyword argument.
Serhiy Storchaka [Sun, 15 Feb 2015 14:22:11 +0000 (16:22 +0200)]
Issue #19681: Test the repr of partial with more than one keyword argument.

10 years agoIssue #19681: Test the repr of partial with more than one keyword argument.
Serhiy Storchaka [Sun, 15 Feb 2015 14:20:47 +0000 (16:20 +0200)]
Issue #19681: Test the repr of partial with more than one keyword argument.

10 years agoIssue #23096: Pickle representation of floats with protocol 0 now is the same
Serhiy Storchaka [Sun, 15 Feb 2015 12:18:32 +0000 (14:18 +0200)]
Issue #23096: Pickle representation of floats with protocol 0 now is the same
for both Python and C implementations.

10 years agoUse pickled data compatible with Python 2 for testing protocols 0-2.
Serhiy Storchaka [Sun, 15 Feb 2015 12:10:24 +0000 (14:10 +0200)]
Use pickled data compatible with Python 2 for testing protocols 0-2.

10 years agoUse pickled data compatible with Python 2 for testing protocols 0-2.
Serhiy Storchaka [Sun, 15 Feb 2015 12:10:03 +0000 (14:10 +0200)]
Use pickled data compatible with Python 2 for testing protocols 0-2.

10 years agoUse os.devnull instead of hardcoded '/dev/null'.
Serhiy Storchaka [Sun, 15 Feb 2015 12:03:11 +0000 (14:03 +0200)]
Use os.devnull instead of hardcoded '/dev/null'.

10 years agoMerge heads
Serhiy Storchaka [Sun, 15 Feb 2015 12:02:15 +0000 (14:02 +0200)]
Merge heads

10 years agoUse os.devnull instead of hardcoded '/dev/null'.
Serhiy Storchaka [Sun, 15 Feb 2015 11:58:23 +0000 (13:58 +0200)]
Use os.devnull instead of hardcoded '/dev/null'.

10 years agoAdd a whatsnew entry for issue #22003.
Berker Peksag [Sat, 14 Feb 2015 22:45:57 +0000 (00:45 +0200)]
Add a whatsnew entry for issue #22003.

Patch by David Wilson.

10 years agoIssue #13637: Improve exception message of a2b_* functions.
Berker Peksag [Sat, 14 Feb 2015 22:31:26 +0000 (00:31 +0200)]
Issue #13637: Improve exception message of a2b_* functions.

Patch by Vajrasky Kok.

10 years agoIssue #13637: Improve exception message of a2b_* functions.
Berker Peksag [Sat, 14 Feb 2015 22:31:00 +0000 (00:31 +0200)]
Issue #13637: Improve exception message of a2b_* functions.

Patch by Vajrasky Kok.

10 years agoIssue #13637: Remove outdated versionchanged directives.
Berker Peksag [Sat, 14 Feb 2015 22:06:07 +0000 (00:06 +0200)]
Issue #13637: Remove outdated versionchanged directives.

Patch by Martin Panter.

10 years agoIssue #13637: Remove outdated versionchanged directives.
Berker Peksag [Sat, 14 Feb 2015 22:05:42 +0000 (00:05 +0200)]
Issue #13637: Remove outdated versionchanged directives.

Patch by Martin Panter.

10 years agoIssue #17753: Skip test_zipfile tests which require write access to test
Serhiy Storchaka [Sat, 14 Feb 2015 21:06:42 +0000 (23:06 +0200)]
Issue #17753: Skip test_zipfile tests which require write access to test
and email.test.