]> granicus.if.org Git - python/log
python
11 years agoIssue #19437: Fix dec_format() of the _decimal module, handle dec_strdup()
Victor Stinner [Tue, 29 Oct 2013 19:33:14 +0000 (20:33 +0100)]
Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup()
failure (memory allocation failure): raise a MemoryError exception

11 years agoIssue #19433: test_capi: check signness of some C types
Victor Stinner [Tue, 29 Oct 2013 18:59:31 +0000 (19:59 +0100)]
Issue #19433: test_capi: check signness of some C types

11 years agoIssue #19433: test_capi: add tests on the size of some C types
Victor Stinner [Tue, 29 Oct 2013 18:39:52 +0000 (19:39 +0100)]
Issue #19433: test_capi: add tests on the size of some C types

11 years agoIssue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all
Victor Stinner [Tue, 29 Oct 2013 18:31:43 +0000 (19:31 +0100)]
Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all
attributes before checking for error. The destructor expects all attributes to
be set. It is now safe to call Py_DECREF(unicode) in the constructor.

11 years agoIssue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and
Victor Stinner [Tue, 29 Oct 2013 18:29:52 +0000 (19:29 +0100)]
Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and
PyTuple_New() failure

11 years agoCleanup locale.localeconv(): move Py_DECREF() closer to the error
Victor Stinner [Tue, 29 Oct 2013 18:28:20 +0000 (19:28 +0100)]
Cleanup locale.localeconv(): move Py_DECREF() closer to the error

11 years agoIssue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle
Victor Stinner [Tue, 29 Oct 2013 18:26:11 +0000 (19:26 +0100)]
Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle
PyObject_IsInstance() failure

11 years agoIssue #19437: Fix Array_subscript() of ctypes, handle Array_item() failure
Victor Stinner [Tue, 29 Oct 2013 15:05:14 +0000 (16:05 +0100)]
Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failure

11 years agoIssue #19420: Fix reference leak in module initalization code of _hashopenssl.c
Christian Heimes [Tue, 29 Oct 2013 11:14:55 +0000 (12:14 +0100)]
Issue #19420: Fix reference leak in module initalization code of _hashopenssl.c

11 years agoIssue #18609: Add a fast-path for "iso8859-1" encoding
Victor Stinner [Tue, 29 Oct 2013 10:34:05 +0000 (11:34 +0100)]
Issue #18609: Add a fast-path for "iso8859-1" encoding

On AIX, the locale encoding may be "iso8859-1", which was not a known syntax of
the legacy ISO 8859-1 encoding.

Using a C codec instead of a Python codec is faster but also avoids tricky
issues during Python startup or complex code.

11 years agofix indent
Victor Stinner [Tue, 29 Oct 2013 09:56:34 +0000 (10:56 +0100)]
fix indent

11 years agomerge with 3.3
Georg Brandl [Tue, 29 Oct 2013 07:17:08 +0000 (08:17 +0100)]
merge with 3.3

11 years agoClarify sentence.
Georg Brandl [Tue, 29 Oct 2013 07:16:56 +0000 (08:16 +0100)]
Clarify sentence.

11 years agoCloses #19416: fix references in the nntplib docs.
Georg Brandl [Tue, 29 Oct 2013 07:14:51 +0000 (08:14 +0100)]
Closes #19416: fix references in the nntplib docs.

11 years agoFix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on docs@.
Georg Brandl [Tue, 29 Oct 2013 07:10:36 +0000 (08:10 +0100)]
Fix wrong signature for two-argument newwin().  Found by Jacqueline Leykam on docs@.

11 years agoFix typo: js_JP is not a valid locale.
Georg Brandl [Tue, 29 Oct 2013 07:05:10 +0000 (08:05 +0100)]
Fix typo: js_JP is not a valid locale.

11 years agoIssue #18408: Fix PyCStructUnionType_update_stgdict(), handle
Victor Stinner [Tue, 29 Oct 2013 02:50:45 +0000 (03:50 +0100)]
Issue #18408: Fix PyCStructUnionType_update_stgdict(), handle
_ctypes_alloc_format_string() failure

11 years agoIssue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memory
Victor Stinner [Tue, 29 Oct 2013 02:50:21 +0000 (03:50 +0100)]
Issue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memory
allocation failure

11 years agoIssue #18408: Fix bytearrayiter.partition()/rpartition(), handle
Victor Stinner [Tue, 29 Oct 2013 02:15:37 +0000 (03:15 +0100)]
Issue #18408: Fix bytearrayiter.partition()/rpartition(), handle
PyByteArray_FromStringAndSize() failure (ex: on memory allocation failure)

11 years agoIssue #18408: Fix error handling in PyBytes_FromObject()
Victor Stinner [Tue, 29 Oct 2013 02:14:22 +0000 (03:14 +0100)]
Issue #18408: Fix error handling in PyBytes_FromObject()

_PyBytes_Resize(&new) sets new to NULL on error, don't call Py_DECREF() with NULL.

11 years agoIssue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure
Victor Stinner [Tue, 29 Oct 2013 01:23:46 +0000 (02:23 +0100)]
Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure

11 years agoIssue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures
Victor Stinner [Tue, 29 Oct 2013 00:46:24 +0000 (01:46 +0100)]
Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures

11 years agoIssue #19428: zipimport now handles errors when reading truncated or invalid
Victor Stinner [Tue, 29 Oct 2013 00:43:44 +0000 (01:43 +0100)]
Issue #19428: zipimport now handles errors when reading truncated or invalid
ZIP archive.

11 years agoIssue #18408: Fix PyUnicode_AsUTF8AndSize(), raise MemoryError exception on
Victor Stinner [Tue, 29 Oct 2013 00:28:23 +0000 (01:28 +0100)]
Issue #18408: Fix PyUnicode_AsUTF8AndSize(), raise MemoryError exception on
memory allocation failure

11 years agoIssue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
Victor Stinner [Tue, 29 Oct 2013 00:19:37 +0000 (01:19 +0100)]
Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
exceptions when merging fast locals into f_locals of a frame.
PyEval_GetLocals() now raises an exception and return NULL on failure.

11 years agoCJK codecs: less magical macros, semicolon is now explicit
Victor Stinner [Mon, 28 Oct 2013 23:59:44 +0000 (00:59 +0100)]
CJK codecs: less magical macros, semicolon is now explicit

11 years agoCJK codecs: less magic macros, require explicit semicolon
Victor Stinner [Mon, 28 Oct 2013 23:19:27 +0000 (00:19 +0100)]
CJK codecs: less magic macros, require explicit semicolon

11 years agoIssue #19425 -- a pickling error should not cause pool to hang.
Richard Oudkerk [Mon, 28 Oct 2013 23:11:58 +0000 (23:11 +0000)]
Issue #19425 -- a pickling error should not cause pool to hang.

11 years agoCJK codecs: add newlines for readability
Victor Stinner [Mon, 28 Oct 2013 23:09:41 +0000 (00:09 +0100)]
CJK codecs: add newlines for readability

11 years agoCJK codecs: use less magic and more readable macros, write explicit if
Victor Stinner [Mon, 28 Oct 2013 22:54:13 +0000 (23:54 +0100)]
CJK codecs: use less magic and more readable macros, write explicit if

11 years agoCJK codecs: remove unused TRYMAP_ENC_MPLANE macro
Victor Stinner [Mon, 28 Oct 2013 22:47:26 +0000 (23:47 +0100)]
CJK codecs: remove unused TRYMAP_ENC_MPLANE macro

11 years agoIssue #18509: handle PyUnicode_Writer() error
Victor Stinner [Mon, 28 Oct 2013 22:18:39 +0000 (23:18 +0100)]
Issue #18509: handle PyUnicode_Writer() error

11 years agoMerge.
Richard Oudkerk [Mon, 28 Oct 2013 23:23:04 +0000 (23:23 +0000)]
Merge.

11 years ago#19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).
Nadeem Vawda [Mon, 28 Oct 2013 20:41:24 +0000 (21:41 +0100)]
#19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).

The underlying C libraries provide no mechanism for serializing compressor and
decompressor objects, so actually pickling these classes is impractical.
Previously, these objects would be pickled without error, but attempting to use
a deserialized instance would segfault the interpreter.

11 years ago#19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).
Nadeem Vawda [Mon, 28 Oct 2013 20:35:23 +0000 (21:35 +0100)]
#19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).

The underlying C libraries provide no mechanism for serializing compressor and
decompressor objects, so actually pickling these classes is impractical.
Previously, these objects would be pickled without error, but attempting to use
a deserialized instance would segfault the interpreter.

11 years agoIssue #19421: add an unit test for warnings.warn() during finalization
Victor Stinner [Mon, 28 Oct 2013 18:16:21 +0000 (19:16 +0100)]
Issue #19421: add an unit test for warnings.warn() during finalization

11 years agoIssue #19421: fix a check in warnings.warn() to be able to use it during Python
Victor Stinner [Mon, 28 Oct 2013 17:47:22 +0000 (18:47 +0100)]
Issue #19421: fix a check in warnings.warn() to be able to use it during Python
finalization.

sys.argv is set to None during Python finalization: add PyList_Check() to avoid
a crash in PyList_Size().

11 years agonull merge with 3.3
Georg Brandl [Mon, 28 Oct 2013 07:08:09 +0000 (08:08 +0100)]
null merge with 3.3

11 years agoAdd NEWS header for 3.3.4.
Georg Brandl [Mon, 28 Oct 2013 07:05:26 +0000 (08:05 +0100)]
Add NEWS header for 3.3.4.

11 years agoIssue #19373: merge from 3.3
Ned Deily [Mon, 28 Oct 2013 02:50:34 +0000 (19:50 -0700)]
Issue #19373: merge from 3.3

11 years agoIssue #19373: Apply upstream change to Tk 8.5.15 fixing OS X 10.9
Ned Deily [Mon, 28 Oct 2013 02:49:29 +0000 (19:49 -0700)]
Issue #19373: Apply upstream change to Tk 8.5.15 fixing OS X 10.9
screen refresh problem.

11 years agoIssue 15792 Correct build options on Win64. Patch by Jeremy Kloth.
Tim Golden [Sun, 27 Oct 2013 20:04:12 +0000 (20:04 +0000)]
Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth.

11 years agoFixed merge test for Tcl/Tk <8.5 (issue #18964).
Serhiy Storchaka [Sun, 27 Oct 2013 10:38:01 +0000 (12:38 +0200)]
Fixed merge test for Tcl/Tk <8.5 (issue #18964).

11 years agoAdded tag v3.3.3rc1 for changeset fd53c500f8b8
Georg Brandl [Sun, 27 Oct 2013 08:49:33 +0000 (09:49 +0100)]
Added tag v3.3.3rc1 for changeset fd53c500f8b8

11 years agoSkip overzealous test for existence of the online license.html for pre-release versions. v3.3.3rc1
Georg Brandl [Sun, 27 Oct 2013 08:41:57 +0000 (09:41 +0100)]
Skip overzealous test for existence of the online license.html for pre-release versions.

11 years agoBump to 3.3.3rc1.
Georg Brandl [Sun, 27 Oct 2013 08:22:59 +0000 (09:22 +0100)]
Bump to 3.3.3rc1.

11 years agoFix markup errors in the docs and amend suspicious ignores.
Georg Brandl [Sun, 27 Oct 2013 08:16:01 +0000 (09:16 +0100)]
Fix markup errors in the docs and amend suspicious ignores.

11 years agoUpdate pydoc topics.
Georg Brandl [Sun, 27 Oct 2013 08:08:16 +0000 (09:08 +0100)]
Update pydoc topics.

11 years agoIssue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
Georg Brandl [Sun, 27 Oct 2013 06:56:11 +0000 (07:56 +0100)]
Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
pseudo-random number generator on fork().

11 years agomerge
Georg Brandl [Sun, 27 Oct 2013 06:39:36 +0000 (07:39 +0100)]
merge

11 years agoIssue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
Georg Brandl [Sun, 27 Oct 2013 06:34:48 +0000 (07:34 +0100)]
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
100 headers are read.  Adapted from patch by Jyrki Pulliainen.

11 years agoIssue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to
Georg Brandl [Sun, 27 Oct 2013 06:29:47 +0000 (07:29 +0100)]
Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to
prevent readline() calls from consuming too much memory.  Patch by Jyrki
Pulliainen.

11 years agoIssue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to
Georg Brandl [Sun, 27 Oct 2013 06:23:53 +0000 (07:23 +0100)]
Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to
prevent readline() calls from consuming too much memory.  Patch by Jyrki
Pulliainen.

11 years agoIssue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125,
Georg Brandl [Sun, 27 Oct 2013 06:16:53 +0000 (07:16 +0100)]
Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125,
for security reasons.  It now doesn't match multiple wildcards nor wildcards
inside IDN fragments.

11 years agoIssue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka [Sun, 27 Oct 2013 06:04:58 +0000 (08:04 +0200)]
Issue #19405: Fixed outdated comments in the _sre module.

11 years agoIssue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit
Georg Brandl [Sun, 27 Oct 2013 05:52:14 +0000 (06:52 +0100)]
Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit
line length.  Patch by Emil Lind.

11 years agoIssue #15663: Force IDLE.app to run the GUI process in 32-bit mode.
Ned Deily [Sun, 27 Oct 2013 05:22:07 +0000 (22:22 -0700)]
Issue #15663: Force IDLE.app to run the GUI process in 32-bit mode.
This mitigates the current Aqua Tk refresh problem on OS X 10.9
by backporting 2.7.x behavior and is transparent to the user.

11 years agojust return toplevel symbol table rather than all blocks (closes #19393)
Benjamin Peterson [Sat, 26 Oct 2013 17:13:51 +0000 (13:13 -0400)]
just return toplevel symbol table rather than all blocks (closes #19393)

11 years agoIssue #15663: OS X installer builtin Tcl/Tk support
Ned Deily [Sat, 26 Oct 2013 10:16:44 +0000 (03:16 -0700)]
Issue #15663: OS X installer builtin Tcl/Tk support

Make it easier for users to make use of the backup _tkinter linked
with the third-party Tcl and Tk frameworks in /Library/Frameworks.
The two tkinter variants are now installed in separate directories
under a new lib-tkinter.  This allows per-user selection by
manipulating sys.path, directly or with PYTHONPATH.  If this
proves useful, we can supply a more convenient user interface
to supply the paths.  For now, this remains somewhat experimental.

11 years agoClose #19339: telnetlib module is now using time.monotonic() when available to
Victor Stinner [Sat, 26 Oct 2013 07:16:29 +0000 (09:16 +0200)]
Close #19339: telnetlib module is now using time.monotonic() when available to
compute timeout.

11 years agoIssue #19400: Prevent extension module build failures with Xcode 5 on OS X
Ned Deily [Fri, 25 Oct 2013 23:03:35 +0000 (16:03 -0700)]
Issue #19400: Prevent extension module build failures with Xcode 5 on OS X
10.8+ when using a universal Python that included a PPC architecture,
such as with a python.org 32-bit-only binary installer.

11 years agoIssue #19392: Document that imp.reload() now relies on __loader__
Brett Cannon [Fri, 25 Oct 2013 17:46:15 +0000 (13:46 -0400)]
Issue #19392: Document that imp.reload() now relies on __loader__
being defined on top of __name__.

11 years agoIssue14255 Don't flatten case of tempdir
Tim Golden [Fri, 25 Oct 2013 17:38:16 +0000 (18:38 +0100)]
Issue14255 Don't flatten case of tempdir

11 years agoIssue #18520: fix reference leak in _PySys_Init()
Victor Stinner [Sun, 27 Oct 2013 16:15:42 +0000 (17:15 +0100)]
Issue #18520: fix reference leak in _PySys_Init()

11 years agoNull merge
Serhiy Storchaka [Sun, 27 Oct 2013 10:38:59 +0000 (12:38 +0200)]
Null merge

11 years agoIssue #19390: Argument Clinic no longer accepts malformed Python and C ids.
Larry Hastings [Sun, 27 Oct 2013 09:49:39 +0000 (02:49 -0700)]
Issue #19390: Argument Clinic no longer accepts malformed Python and C ids.

11 years agomerge with 3.3
Georg Brandl [Sun, 27 Oct 2013 08:54:53 +0000 (09:54 +0100)]
merge with 3.3

11 years ago#19227: merge with 3.3
Georg Brandl [Sun, 27 Oct 2013 06:57:42 +0000 (07:57 +0100)]
#19227: merge with 3.3

11 years agomerge with 3.3
Georg Brandl [Sun, 27 Oct 2013 06:46:09 +0000 (07:46 +0100)]
merge with 3.3

11 years agoIssue #19329: Optimized compiling charsets in regular expressions.
Serhiy Storchaka [Sun, 27 Oct 2013 06:20:29 +0000 (08:20 +0200)]
Issue #19329: Optimized compiling charsets in regular expressions.

11 years agoIssue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka [Sun, 27 Oct 2013 06:07:46 +0000 (08:07 +0200)]
Issue #19405: Fixed outdated comments in the _sre module.

11 years agoIssue Issue #15663: merge from 3.3
Ned Deily [Sun, 27 Oct 2013 05:23:20 +0000 (22:23 -0700)]
Issue Issue #15663: merge from 3.3

11 years agoMitigate #19412: restore test skips for --without-doc-strings
Nick Coghlan [Sun, 27 Oct 2013 04:19:12 +0000 (14:19 +1000)]
Mitigate #19412: restore test skips for --without-doc-strings

11 years agomerge 3.3 (#19393)
Benjamin Peterson [Sat, 26 Oct 2013 17:22:08 +0000 (13:22 -0400)]
merge 3.3 (#19393)

11 years agoChanged a comment to end grammar bikeshedding ;-)
Tim Peters [Sat, 26 Oct 2013 16:56:16 +0000 (11:56 -0500)]
Changed a comment to end grammar bikeshedding ;-)

11 years agoAssorted 3.4 What's New updates
Nick Coghlan [Sat, 26 Oct 2013 15:57:34 +0000 (01:57 +1000)]
Assorted 3.4 What's New updates

- cross-references and attributions for inspect changes
- note improvements to inspect and pydoc handling of
  metaclasses and dynamic attributes (courtesy of the
  enum PEP)
- group all CPython implementation specific changes
  into a common section
- add see also links for most of the PEPs
- fix the see also link for the release PEP
- add suitable caveats on Argument Clinic inclusion
- clarify the change to __wrapped__ handling

11 years agoClose #19409: add missing import in pkgutil
Nick Coghlan [Sat, 26 Oct 2013 14:27:39 +0000 (00:27 +1000)]
Close #19409: add missing import in pkgutil

11 years agoIssue #19330: Handle the no-docstrings case in tests
Nick Coghlan [Sat, 26 Oct 2013 12:20:43 +0000 (22:20 +1000)]
Issue #19330: Handle the no-docstrings case in tests

11 years agonull merge
Ned Deily [Sat, 26 Oct 2013 10:27:24 +0000 (03:27 -0700)]
null merge

11 years agoIssue #15663: OS X installer builtin Tcl/Tk support
Ned Deily [Sat, 26 Oct 2013 10:17:44 +0000 (03:17 -0700)]
Issue #15663: OS X installer builtin Tcl/Tk support

Make it easier for users to make use of the backup _tkinter linked
with the third-party Tcl and Tk frameworks in /Library/Frameworks.
The two tkinter variants are now installed in separate directories
under a new lib-tkinter.  This allows per-user selection by
manipulating sys.path, directly or with PYTHONPATH.  If this
proves useful, we can supply a more convenient user interface
to supply the paths.  For now, this remains somewhat experimental.

11 years agoIssue #18685: Extract template part of _sre.c into separated sre_lib.h file.
Serhiy Storchaka [Sat, 26 Oct 2013 08:18:42 +0000 (11:18 +0300)]
Issue #18685: Extract template part of _sre.c into separated sre_lib.h file.

11 years agoClose #19330 by using public classes in contextlib
Nick Coghlan [Sat, 26 Oct 2013 08:08:15 +0000 (18:08 +1000)]
Close #19330 by using public classes in contextlib

- added test cases to ensure docstrings are reasonable
- also updates various comments in contextlib for accuracy
- identifed #19404 as an issue making it difficult to provide
  good help output on generator based context manager instances

11 years agoIssue #18685: Restore re performance to pre-PEP 393 levels.
Serhiy Storchaka [Sat, 26 Oct 2013 07:45:48 +0000 (10:45 +0300)]
Issue #18685: Restore re performance to pre-PEP 393 levels.

11 years agoMove Misc/NEWS entries in correct secton.
Serhiy Storchaka [Sat, 26 Oct 2013 07:42:09 +0000 (10:42 +0300)]
Move Misc/NEWS entries in correct secton.

11 years ago(Merge 3.3) Close #19339: telnetlib module is now using time.monotonic() when
Victor Stinner [Sat, 26 Oct 2013 07:20:38 +0000 (09:20 +0200)]
(Merge 3.3) Close #19339: telnetlib module is now using time.monotonic() when
available to compute timeout.

11 years agoClose #19396: make test_contextlib tolerate -S
Nick Coghlan [Sat, 26 Oct 2013 06:37:47 +0000 (16:37 +1000)]
Close #19396: make test_contextlib tolerate -S

11 years agoFiddled Thread.join() to be a little simpler. Kinda ;-)
Tim Peters [Sat, 26 Oct 2013 03:33:52 +0000 (22:33 -0500)]
Fiddled Thread.join() to be a little simpler.  Kinda ;-)

11 years agoIssue #19399: fix sporadic test_subprocess failure.
Tim Peters [Sat, 26 Oct 2013 01:46:51 +0000 (20:46 -0500)]
Issue #19399: fix sporadic test_subprocess failure.

Change Thread.join() with a negative timeout to just return.  The
behavior isn't documented then, but this restores previous
behavior.

11 years agonull merge
Ned Deily [Fri, 25 Oct 2013 23:05:08 +0000 (16:05 -0700)]
null merge

11 years agoCorrect whitespace in test_os
Tim Golden [Fri, 25 Oct 2013 20:26:06 +0000 (21:26 +0100)]
Correct whitespace in test_os

11 years agoIssue13234 Credit Santoso for the patch and add NEWS item
Tim Golden [Fri, 25 Oct 2013 20:21:20 +0000 (21:21 +0100)]
Issue13234 Credit Santoso for the patch and add NEWS item

11 years agoIssue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya)
Tim Golden [Fri, 25 Oct 2013 19:24:06 +0000 (20:24 +0100)]
Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya)

11 years agomerge
Brett Cannon [Fri, 25 Oct 2013 19:45:42 +0000 (15:45 -0400)]
merge

11 years agotest_resource should not assume all attributes are available when they
Brett Cannon [Fri, 25 Oct 2013 19:45:25 +0000 (15:45 -0400)]
test_resource should not assume all attributes are available when they
are individually controlled by #ifdef statements in the extension
code.

11 years agoIssue #19375: The site module adding a "site-python" directory to sys.path, if it...
Antoine Pitrou [Fri, 25 Oct 2013 19:39:26 +0000 (21:39 +0200)]
Issue #19375: The site module adding a "site-python" directory to sys.path, if it exists, is now deprecated.

11 years agoIssue #16803: Move test.test_importlib.extension to use both frozen and source import...
Brett Cannon [Fri, 25 Oct 2013 19:39:02 +0000 (15:39 -0400)]
Issue #16803: Move test.test_importlib.extension to use both frozen and source importlib code

11 years agoIssue #19387: explain and test the sre overlap table
Antoine Pitrou [Fri, 25 Oct 2013 19:36:10 +0000 (21:36 +0200)]
Issue #19387: explain and test the sre overlap table

11 years agomerge
Brett Cannon [Fri, 25 Oct 2013 17:53:06 +0000 (13:53 -0400)]
merge

11 years agoTweak some doc wording for importlib.reload
Brett Cannon [Fri, 25 Oct 2013 17:52:46 +0000 (13:52 -0400)]
Tweak some doc wording for importlib.reload

11 years agoMerge.
bquinlan [Fri, 25 Oct 2013 17:51:18 +0000 (04:51 +1100)]
Merge.