]> granicus.if.org Git - python/log
python
11 years agoimportlib.abc.SourceLoader.get_source() was re-raising SyntaxError and
Brett Cannon [Sun, 16 Jun 2013 22:05:54 +0000 (18:05 -0400)]
importlib.abc.SourceLoader.get_source() was re-raising SyntaxError and
UnicodeDecodeError as ImportError. That was over-reaching the point of
raising ImportError in get_source() (which is to signal the source
code was not found when it should have). Conflating the two exceptions
with ImportError could lead to masking errors with the source which
should be known outside of whether there was an error simply getting
the source to begin with.

11 years agoIssue #18115: Abstract out managing the cleanup of modules to use in
Brett Cannon [Sun, 16 Jun 2013 21:23:06 +0000 (17:23 -0400)]
Issue #18115: Abstract out managing the cleanup of modules to use in
loaders where C code provides the loaded module.

11 years agoCheck that warnings.showwarning() is not changed.
Brett Cannon [Sun, 16 Jun 2013 19:20:48 +0000 (15:20 -0400)]
Check that warnings.showwarning() is not changed.

11 years agoIssues #18058, 18057: Make importlib._bootstrap.NamespaceLoader
Brett Cannon [Sun, 16 Jun 2013 18:56:58 +0000 (14:56 -0400)]
Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader
conform the the InspectLoader ABC. Perk of this is that runpy/-m can
now work with namespace packages.

11 years agomerge
Brett Cannon [Sun, 16 Jun 2013 17:14:06 +0000 (13:14 -0400)]
merge

11 years agoIssue #17177: The imp module is pending deprecation.
Brett Cannon [Sun, 16 Jun 2013 17:13:40 +0000 (13:13 -0400)]
Issue #17177: The imp module is pending deprecation.

To make sure there is no issue with code that is both Python 2 and 3
compatible, there are no plans to remove the module any sooner than
Python 4 (unless the community moves to Python 3 solidly before then).

11 years agoMerge with 3.3
Andrew Kuchling [Sun, 16 Jun 2013 17:02:55 +0000 (13:02 -0400)]
Merge with 3.3

11 years agoDescribe 'surrogateescape' in the documentation.
Andrew Kuchling [Sun, 16 Jun 2013 16:58:48 +0000 (12:58 -0400)]
Describe 'surrogateescape' in the documentation.

Also, improve some docstring descriptions of the 'errors' parameter.

Closes #14015.

11 years agoStop using the deprecated unittest.TestCase.assertRaisesRegexp()
Brett Cannon [Sun, 16 Jun 2013 15:37:57 +0000 (11:37 -0400)]
Stop using the deprecated unittest.TestCase.assertRaisesRegexp()

11 years agoMake test_builtin work when executed directly
Brett Cannon [Sun, 16 Jun 2013 03:24:11 +0000 (23:24 -0400)]
Make test_builtin work when executed directly

11 years agoPrevent a possible double close of parent pipe fds when the subprocess
Gregory P. Smith [Sun, 16 Jun 2013 01:14:56 +0000 (18:14 -0700)]
Prevent a possible double close of parent pipe fds when the subprocess
exec runs into an error.  Prevent a regular multi-close of the /dev/null
fd when any of stdin, stdout and stderr was set to DEVNULL.

11 years agonews entry for subprocess double close fix.
Gregory P. Smith [Sun, 16 Jun 2013 01:05:17 +0000 (18:05 -0700)]
news entry for subprocess double close fix.

11 years agoPrevent a possible double close of parent pipe fds when the subprocess
Gregory P. Smith [Sun, 16 Jun 2013 01:04:26 +0000 (18:04 -0700)]
Prevent a possible double close of parent pipe fds when the subprocess
exec runs into an error.  Prevent a regular multi-close of the /dev/null
fd when any of stdin, stdout and stderr was set to DEVNULL.

11 years agoIssue #17177: stop using imp in test_importlib
Brett Cannon [Sat, 15 Jun 2013 22:39:21 +0000 (18:39 -0400)]
Issue #17177: stop using imp in test_importlib

11 years agoIssue #17177: update checkpyc to stop using imp
Brett Cannon [Sat, 15 Jun 2013 22:10:18 +0000 (18:10 -0400)]
Issue #17177: update checkpyc to stop using imp

11 years agoIssue # 17177: Stop using imp in setup.py
Brett Cannon [Sat, 15 Jun 2013 21:52:59 +0000 (17:52 -0400)]
Issue # 17177: Stop using imp in setup.py

11 years agoIssue # 17177: Stop using imp in turtledemo
Brett Cannon [Sat, 15 Jun 2013 21:33:27 +0000 (17:33 -0400)]
Issue # 17177: Stop using imp in turtledemo

11 years agoIssue #17177: Stop using imp in zipfile
Brett Cannon [Sat, 15 Jun 2013 21:32:30 +0000 (17:32 -0400)]
Issue #17177: Stop using imp in zipfile

11 years agoIssue #17177: Stop using imp in a bunch of tests
Brett Cannon [Sat, 15 Jun 2013 21:11:25 +0000 (17:11 -0400)]
Issue #17177: Stop using imp in a bunch of tests

11 years agoMerge with 3.3
Andrew Kuchling [Sat, 15 Jun 2013 19:10:08 +0000 (15:10 -0400)]
Merge with 3.3

11 years agoIssue #17177: Stop using imp in sysconfig
Brett Cannon [Sat, 15 Jun 2013 18:32:11 +0000 (14:32 -0400)]
Issue #17177: Stop using imp in sysconfig

11 years agoIssue #17177: switch from imp.new_module to types.ModuleType for runpy
Brett Cannon [Sat, 15 Jun 2013 18:27:21 +0000 (14:27 -0400)]
Issue #17177: switch from imp.new_module to types.ModuleType for runpy

11 years agoIssue #17177: Stop using imp in pydoc
Brett Cannon [Sat, 15 Jun 2013 18:25:04 +0000 (14:25 -0400)]
Issue #17177: Stop using imp in pydoc

11 years agoIssue #17177: Stop using imp with py_compile
Brett Cannon [Sat, 15 Jun 2013 18:07:21 +0000 (14:07 -0400)]
Issue #17177: Stop using imp with py_compile

11 years ago#18113: Objects associated to a curses.panel object with set_userptr() were leaked.
Andrew Kuchling [Sat, 15 Jun 2013 18:04:04 +0000 (14:04 -0400)]
#18113: Objects associated to a curses.panel object with set_userptr() were leaked.

Reported by Atsuo Ishimoto.

11 years agomerge
Brett Cannon [Sat, 15 Jun 2013 17:38:07 +0000 (13:38 -0400)]
merge

11 years agomerge w/ 3.3
Brett Cannon [Sat, 15 Jun 2013 17:37:38 +0000 (13:37 -0400)]
merge w/ 3.3

11 years agoDrop some dead imports of imp
Brett Cannon [Sat, 15 Jun 2013 17:37:12 +0000 (13:37 -0400)]
Drop some dead imports of imp

11 years agoFix typo; clarify that the methods were removed entirely
Andrew Kuchling [Sat, 15 Jun 2013 17:29:09 +0000 (13:29 -0400)]
Fix typo; clarify that the methods were removed entirely

11 years agoIssue #17177: Stop using imp in multiprocessing
Brett Cannon [Sat, 15 Jun 2013 17:23:01 +0000 (13:23 -0400)]
Issue #17177: Stop using imp in multiprocessing

11 years agoIssue #17177: Stop using imp in distutils
Brett Cannon [Sat, 15 Jun 2013 16:59:53 +0000 (12:59 -0400)]
Issue #17177: Stop using imp in distutils

11 years agoIssue #17177: stop using imp for compileall.
Brett Cannon [Sat, 15 Jun 2013 03:04:02 +0000 (23:04 -0400)]
Issue #17177: stop using imp for compileall.

11 years agomake test more robust under Windows
Brett Cannon [Sat, 15 Jun 2013 02:50:57 +0000 (22:50 -0400)]
make test more robust under Windows

11 years agoIssue #17177: Update the programming FAQ to use importlib
Brett Cannon [Sat, 15 Jun 2013 02:49:00 +0000 (22:49 -0400)]
Issue #17177: Update the programming FAQ to use importlib

11 years agoMove something to the right section of What's New
Brett Cannon [Sat, 15 Jun 2013 02:37:11 +0000 (22:37 -0400)]
Move something to the right section of What's New

11 years agoIssue #18194: Introduce importlib.util.cache_from_source() and
Brett Cannon [Sat, 15 Jun 2013 02:35:40 +0000 (22:35 -0400)]
Issue #18194: Introduce importlib.util.cache_from_source() and
source_from_cache(), finishing the work introduced in changset
4134:9cacdb9d0c59.

11 years agoMake it more obvious what things used in imp are snuck in through private APIs
Brett Cannon [Sat, 15 Jun 2013 02:29:58 +0000 (22:29 -0400)]
Make it more obvious what things used in imp are snuck in through private APIs

11 years agoIssue #17907: touch up the code for imp.new_module().
Brett Cannon [Sat, 15 Jun 2013 02:26:30 +0000 (22:26 -0400)]
Issue #17907: touch up the code for imp.new_module().

11 years agoFix markup of the synopsis along with changing to state what is in the
Brett Cannon [Sat, 15 Jun 2013 01:59:16 +0000 (21:59 -0400)]
Fix markup of the synopsis along with changing to state what is in the
module and not as a definition of what an enumeration is.

11 years agoMerge heads
Victor Stinner [Sat, 15 Jun 2013 01:37:45 +0000 (03:37 +0200)]
Merge heads

11 years agoRevert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators
Victor Stinner [Sat, 15 Jun 2013 01:37:01 +0000 (03:37 +0200)]
Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators

The new API require more discussion.

11 years agoCloses issue 17947. Adds PEP-0435 (Adding an Enum type to the Python standard library).
Ethan Furman [Fri, 14 Jun 2013 23:55:46 +0000 (16:55 -0700)]
Closes issue 17947.  Adds PEP-0435 (Adding an Enum type to the Python standard library).

Missing files added.
News entry added.

11 years agoIssue #17907: Document types.ModuleType's constructor and attributes,
Brett Cannon [Fri, 14 Jun 2013 23:19:57 +0000 (19:19 -0400)]
Issue #17907: Document types.ModuleType's constructor and attributes,
allowing for documenting imp.new_module() as deprecated.

11 years agoIssue #18192: Introduce importlib.util.MAGIC_NUMBER and document the
Brett Cannon [Fri, 14 Jun 2013 23:02:34 +0000 (19:02 -0400)]
Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the
deprecation of imp.get_magic().

11 years agoIssue #3329: Add new APIs to customize memory allocators
Victor Stinner [Fri, 14 Jun 2013 22:37:46 +0000 (00:37 +0200)]
Issue #3329: Add new APIs to customize memory allocators

* Add a new PyMemAllocators structure
* New functions:

  - PyMem_RawMalloc(), PyMem_RawRealloc(), PyMem_RawFree(): GIL-free memory
    allocator functions
  - PyMem_GetRawAllocators(), PyMem_SetRawAllocators()
  - PyMem_GetAllocators(), PyMem_SetAllocators()
  - PyMem_SetupDebugHooks()
  - _PyObject_GetArenaAllocators(), _PyObject_SetArenaAllocators()

* Add unit test for PyMem_Malloc(0) and PyObject_Malloc(0)
* Add unit test for new get/set allocators functions
* PyObject_Malloc() now falls back on PyMem_Malloc() instead of malloc() if
  size is bigger than SMALL_REQUEST_THRESHOLD, and PyObject_Realloc() falls
  back on PyMem_Realloc() instead of realloc()
* PyMem_Malloc() and PyMem_Realloc() now always call malloc() and realloc(),
  instead of calling PyObject_Malloc() and PyObject_Realloc() in debug mode

11 years agomerge
Brett Cannon [Fri, 14 Jun 2013 22:33:21 +0000 (18:33 -0400)]
merge

11 years agoIssue #17222: Raise FileExistsError when py_compile.compile would
Brett Cannon [Fri, 14 Jun 2013 22:33:00 +0000 (18:33 -0400)]
Issue #17222: Raise FileExistsError when py_compile.compile would
overwrite a symlink or non-regular file with a regular file.

11 years agoIssue #18149: Add filecmp.clear_cache() to manually clear the filecmp cache.
Ned Deily [Fri, 14 Jun 2013 22:19:11 +0000 (15:19 -0700)]
Issue #18149: Add filecmp.clear_cache() to manually clear the filecmp cache.
Patch by Mark Levitt

11 years agoIssue #18193: Add importlib.reload(), documenting (but not
Brett Cannon [Fri, 14 Jun 2013 19:04:26 +0000 (15:04 -0400)]
Issue #18193: Add importlib.reload(), documenting (but not
implementing in code) the deprecation of imp.reload().

Thanks to Berker Peksag for the patch.

11 years agoRemove a dead import line.
Brett Cannon [Fri, 14 Jun 2013 14:42:48 +0000 (10:42 -0400)]
Remove a dead import line.

Noticed by Serhly Storchaka.

11 years agoIssue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 on Windows
Christian Heimes [Fri, 14 Jun 2013 13:48:16 +0000 (15:48 +0200)]
Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 on Windows

11 years agoIssue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 on Windows
Christian Heimes [Fri, 14 Jun 2013 13:40:28 +0000 (15:40 +0200)]
Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 on Windows

11 years agoSimplify return value of ssl.get_default_verify_paths
Christian Heimes [Fri, 14 Jun 2013 13:14:29 +0000 (15:14 +0200)]
Simplify return value of ssl.get_default_verify_paths
prefix function with PySSL_, too. Other module level functions have a prefix, too.

11 years agocomparing with http://hg.python.org/cpython/
Christian Heimes [Fri, 14 Jun 2013 13:01:03 +0000 (15:01 +0200)]
comparing with http://hg.python.org/cpython/
searching for changes
changeset:   84118:98343392fd81
tag:         tip
user:        Christian Heimes <christian@cheimes.de>
date:        Fri Jun 14 14:54:48 2013 +0200
files:       PC/VS9.0/_socket.vcproj PC/VS9.0/_ssl.vcproj
description:
Fix compilation of Python with VS 2008
Contrary to VS 2010 the compiler doesn't like semicolon seperated
dependency names

11 years agoCloses issue 17947. Adds PEP-0435 (Enum, IntEnum) to the stdlib.
Ethan Furman [Fri, 14 Jun 2013 07:30:27 +0000 (00:30 -0700)]
Closes issue 17947.  Adds PEP-0435 (Enum, IntEnum) to the stdlib.

11 years agoMove test_pep352 over to unittest.main()
Brett Cannon [Fri, 14 Jun 2013 01:18:43 +0000 (21:18 -0400)]
Move test_pep352 over to unittest.main()

11 years agoIssue #18200: Update the stdlib (except tests) to use
Brett Cannon [Fri, 14 Jun 2013 00:57:26 +0000 (20:57 -0400)]
Issue #18200: Update the stdlib (except tests) to use
ModuleNotFoundError.

11 years agoIssue #18048: Merge test_pep263.py and test_coding.py into test_source_encoding.py.
Serhiy Storchaka [Thu, 13 Jun 2013 07:08:00 +0000 (10:08 +0300)]
Issue #18048: Merge test_pep263.py and test_coding.py into test_source_encoding.py.

11 years agoIssue #18048: Rename test_coding.py to test_source_encoding.py.
Serhiy Storchaka [Thu, 13 Jun 2013 06:50:42 +0000 (09:50 +0300)]
Issue #18048: Rename test_coding.py to test_source_encoding.py.

11 years agoIssue #18048: Rename test_pep263.py to test_source_encoding.py.
Serhiy Storchaka [Thu, 13 Jun 2013 06:48:15 +0000 (09:48 +0300)]
Issue #18048: Rename test_pep263.py to test_source_encoding.py.

11 years agoIssue #15767: Add an explicit test for raising ModuleNotFoundError
Brett Cannon [Thu, 13 Jun 2013 03:38:50 +0000 (23:38 -0400)]
Issue #15767: Add an explicit test for raising ModuleNotFoundError
when None in sys.modules.

11 years agoIssue #15767: Touch up ModuleNotFoundError usage by import.
Brett Cannon [Thu, 13 Jun 2013 03:29:18 +0000 (23:29 -0400)]
Issue #15767: Touch up ModuleNotFoundError usage by import.

Forgot to raise ModuleNotFoundError when None is found in sys.modules.
This led to introducing the C function PyErr_SetImportErrorSubclass()
to make setting ModuleNotFoundError easier.

Also updated the reference docs to mention ModuleNotFoundError
appropriately. Updated the docs for ModuleNotFoundError to mention the
None in sys.modules case.

Lastly, it was noticed that PyErr_SetImportError() was not setting an
exception when returning None in one case. That issue is now fixed.

11 years agoUpdate various test modules to use unittest.main() for test discovery
Brett Cannon [Thu, 13 Jun 2013 01:25:59 +0000 (21:25 -0400)]
Update various test modules to use unittest.main() for test discovery
instead of manually listing tests for test.support.run_unittest().

11 years agoPartially revert changeset #281857369a78 to make sure threads are
Brett Cannon [Thu, 13 Jun 2013 01:25:23 +0000 (21:25 -0400)]
Partially revert changeset #281857369a78 to make sure threads are
reaped in all situations.

11 years agoMove test___all__ over to unittest.main() and use ModuleNotFoundError
Brett Cannon [Thu, 13 Jun 2013 00:12:30 +0000 (20:12 -0400)]
Move test___all__ over to unittest.main() and use ModuleNotFoundError

11 years agoSpruce up test_xmlrpc by using ModuleNotFoundError and moving to
Brett Cannon [Thu, 13 Jun 2013 00:04:19 +0000 (20:04 -0400)]
Spruce up test_xmlrpc by using ModuleNotFoundError and moving to
unittest.main().

11 years agoMove test_zipfile to unittest.main()
Brett Cannon [Wed, 12 Jun 2013 23:57:19 +0000 (19:57 -0400)]
Move test_zipfile to unittest.main()

11 years agoIssue #15767: Introduce ModuleNotFoundError, a subclass of
Brett Cannon [Wed, 12 Jun 2013 20:59:46 +0000 (16:59 -0400)]
Issue #15767: Introduce ModuleNotFoundError, a subclass of
ImportError.

The exception is raised by import when a module could not be found.
Technically this is defined as no viable loader could be found for the
specified module. This includes ``from ... import`` statements so that
the module usage is consistent for all situations where import
couldn't find what was requested.

This should allow for the common idiom of::

  try:
    import something
  except ImportError:
    pass

to be updated to using ModuleNotFoundError and not accidentally mask
ImportError messages that should propagate (e.g. issues with a
loader).

This work was driven by the fact that the ``from ... import``
statement needed to be able to tell the difference between an
ImportError that simply couldn't find a module (and thus silence the
exception so that ceval can raise it) and an ImportError that
represented an actual problem.

11 years agoMove code from test_importhooks into test_zipimport.
Brett Cannon [Wed, 12 Jun 2013 19:57:01 +0000 (15:57 -0400)]
Move code from test_importhooks into test_zipimport.

11 years agoAdd tests for issue #18183.
Serhiy Storchaka [Wed, 12 Jun 2013 06:28:20 +0000 (09:28 +0300)]
Add tests for issue #18183.

11 years agoAdd tests for issue #18183.
Serhiy Storchaka [Wed, 12 Jun 2013 06:20:44 +0000 (09:20 +0300)]
Add tests for issue #18183.

11 years ago#18196: merge with 3.3
Roger Serwy [Wed, 12 Jun 2013 03:25:34 +0000 (22:25 -0500)]
#18196: merge with 3.3

11 years ago#18196: Avoid displaying spurious SystemExit tracebacks.
Roger Serwy [Wed, 12 Jun 2013 03:25:14 +0000 (22:25 -0500)]
#18196: Avoid displaying spurious SystemExit tracebacks.

11 years ago#5492: merge with 3.3
Roger Serwy [Wed, 12 Jun 2013 03:13:51 +0000 (22:13 -0500)]
#5492: merge with 3.3

11 years ago#5492: Avoid traceback when exiting IDLE caused by a race condition.
Roger Serwy [Wed, 12 Jun 2013 03:13:17 +0000 (22:13 -0500)]
#5492: Avoid traceback when exiting IDLE caused by a race condition.

11 years agoIssue #18187: merge from 3.3
Ned Deily [Tue, 11 Jun 2013 21:40:23 +0000 (14:40 -0700)]
Issue #18187: merge from 3.3

11 years agoIssue #18187: Fix broken link in venv documentation. Patch by Berker Peksag.
Ned Deily [Tue, 11 Jun 2013 21:38:39 +0000 (14:38 -0700)]
Issue #18187: Fix broken link in venv documentation. Patch by Berker Peksag.

11 years agoexplanatory comment
Brett Cannon [Tue, 11 Jun 2013 21:34:04 +0000 (17:34 -0400)]
explanatory comment

11 years agotypo fix
Brett Cannon [Tue, 11 Jun 2013 21:22:39 +0000 (17:22 -0400)]
typo fix

11 years agoIssue #18158: delete test_importhooks. Redundant in the face of
Brett Cannon [Tue, 11 Jun 2013 21:12:30 +0000 (17:12 -0400)]
Issue #18158: delete test_importhooks. Redundant in the face of
test_importlib.

11 years agoIssue #18157: stop using imp.load_module() in imp.
Brett Cannon [Tue, 11 Jun 2013 21:09:36 +0000 (17:09 -0400)]
Issue #18157: stop using imp.load_module() in imp.

11 years ago#17511: merge with 3.3.
Roger Serwy [Tue, 11 Jun 2013 04:02:56 +0000 (23:02 -0500)]
#17511: merge with 3.3.

11 years ago#17511: Keep IDLE find dialog open after clicking "Find Next".
Roger Serwy [Tue, 11 Jun 2013 04:01:20 +0000 (23:01 -0500)]
#17511: Keep IDLE find dialog open after clicking "Find Next".
Original patch by Sarah K.

11 years agomerge 3.3 (#18183)
Benjamin Peterson [Mon, 10 Jun 2013 16:24:01 +0000 (09:24 -0700)]
merge 3.3 (#18183)

11 years agoremove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see...
Benjamin Peterson [Mon, 10 Jun 2013 16:19:46 +0000 (09:19 -0700)]
remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see #18183)

11 years agoMerge.
Richard Oudkerk [Mon, 10 Jun 2013 15:31:39 +0000 (16:31 +0100)]
Merge.

11 years agoIssue #18174: Fix fd leaks in tests.
Richard Oudkerk [Mon, 10 Jun 2013 15:29:19 +0000 (16:29 +0100)]
Issue #18174: Fix fd leaks in tests.

11 years agoMerge.
Richard Oudkerk [Mon, 10 Jun 2013 14:45:30 +0000 (15:45 +0100)]
Merge.

11 years agoIssue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().
Richard Oudkerk [Mon, 10 Jun 2013 14:38:54 +0000 (15:38 +0100)]
Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().

11 years agofixd refleak
Christian Heimes [Mon, 10 Jun 2013 08:47:22 +0000 (10:47 +0200)]
fixd refleak

11 years ago(3.3->default) Ensure that the fix for #17269 also works on OSX 10.4
Ronald Oussoren [Mon, 10 Jun 2013 08:37:12 +0000 (10:37 +0200)]
(3.3->default) Ensure that the fix for #17269 also works on OSX 10.4

AI_NUMERICSERV isn't defined on OSX 10.4.

11 years agoEnsure that the fix for #17269 also works on OSX 10.4
Ronald Oussoren [Mon, 10 Jun 2013 08:36:28 +0000 (10:36 +0200)]
Ensure that the fix for #17269 also works on OSX 10.4

AI_NUMERICSERV isn't defined on OSX 10.4.

11 years agoIssue #16102: Make uuid._netbios_getnode() work again on Python 3.
Serhiy Storchaka [Sun, 9 Jun 2013 18:10:13 +0000 (21:10 +0300)]
Issue #16102: Make uuid._netbios_getnode() work again on Python 3.

11 years agoIssue #16102: Make uuid._netbios_getnode() work again on Python 3.
Serhiy Storchaka [Sun, 9 Jun 2013 18:08:05 +0000 (21:08 +0300)]
Issue #16102: Make uuid._netbios_getnode() work again on Python 3.

11 years agoIssue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store.
Christian Heimes [Sun, 9 Jun 2013 17:03:31 +0000 (19:03 +0200)]
Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store.

11 years agoget_default_verify_paths doesn't belong inside the ifdef block
Christian Heimes [Sun, 9 Jun 2013 16:29:54 +0000 (18:29 +0200)]
get_default_verify_paths doesn't belong inside the ifdef block

11 years agoremoved accidental new line
Christian Heimes [Sun, 9 Jun 2013 16:07:16 +0000 (18:07 +0200)]
removed accidental new line

11 years agoIssue #18143: Implement ssl.get_default_verify_paths() in order to debug
Christian Heimes [Sun, 9 Jun 2013 16:02:55 +0000 (18:02 +0200)]
Issue #18143: Implement ssl.get_default_verify_paths() in order to debug
the default locations for cafile and capath.

11 years agoIssue #15239: Make mkstringprep.py work again on Python 3.
Serhiy Storchaka [Sun, 9 Jun 2013 14:11:48 +0000 (17:11 +0300)]
Issue #15239: Make mkstringprep.py work again on Python 3.

11 years agoIssue #15239: Make mkstringprep.py work again on Python 3.
Serhiy Storchaka [Sun, 9 Jun 2013 14:08:00 +0000 (17:08 +0300)]
Issue #15239: Make mkstringprep.py work again on Python 3.