]> granicus.if.org Git - python/log
python
7 years agobpo-32030: Rework memory allocators (#4625)
Victor Stinner [Wed, 29 Nov 2017 16:20:38 +0000 (17:20 +0100)]
bpo-32030: Rework memory allocators (#4625)

* Fix _PyMem_SetupAllocators("debug"): always restore allocators to
  the defaults, rather than only caling _PyMem_SetupDebugHooks().
* Add _PyMem_SetDefaultAllocator() helper to set the "default"
  allocator.
* Add _PyMem_GetAllocatorsName(): get the name of the allocators
* main() now uses debug hooks on memory allocators if Py_DEBUG is
  defined, rather than calling directly malloc()
* Document default memory allocators in C API documentation
* _Py_InitializeCore() now fails with a fatal user error if
  PYTHONMALLOC value is an unknown memory allocator, instead of
  failing with a fatal internal error.
* Add new tests on the PYTHONMALLOC environment variable
* Add support.with_pymalloc()
* Add the _testcapi.WITH_PYMALLOC constant and expose it as
   support.with_pymalloc().
* sysconfig.get_config_var('WITH_PYMALLOC') doesn't work on Windows, so
   replace it with support.with_pymalloc().
* pythoninfo: add _testcapi collector for pymem

7 years agotest_socket: socket.socketpair() is always available (#4634)
Victor Stinner [Wed, 29 Nov 2017 15:33:53 +0000 (16:33 +0100)]
test_socket: socket.socketpair() is always available (#4634)

7 years agobpo-32138: Skip on Android test_faulthandler tests that raise SIGSEGV (GH-4604)
xdegaye [Wed, 29 Nov 2017 10:43:23 +0000 (11:43 +0100)]
bpo-32138: Skip on Android test_faulthandler tests that raise SIGSEGV (GH-4604)

Remove the test.support.requires_android_level decorator.

7 years agobpo-32139: test_strftime does not anymore modify the locale (GH-4569)
xdegaye [Wed, 29 Nov 2017 10:36:48 +0000 (11:36 +0100)]
bpo-32139: test_strftime does not anymore modify the locale (GH-4569)

7 years agobpo-32164: Delete unused file idlelib/tabbedpages.py (#4628)
Terry Jan Reedy [Wed, 29 Nov 2017 05:08:28 +0000 (00:08 -0500)]
bpo-32164: Delete unused file idlelib/tabbedpages.py (#4628)

7 years agobpo-30781: Remove unused imports in idlelib.configdialog. (#4627)
Terry Jan Reedy [Wed, 29 Nov 2017 02:52:32 +0000 (21:52 -0500)]
bpo-30781: Remove unused imports in idlelib.configdialog. (#4627)

7 years agobpo-32100: Delete unneeded import in idlelib.pathbrowser. (#4626)
Terry Jan Reedy [Wed, 29 Nov 2017 02:50:21 +0000 (21:50 -0500)]
bpo-32100: Delete unneeded import in idlelib.pathbrowser. (#4626)

7 years agobpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)
Serhiy Storchaka [Tue, 28 Nov 2017 23:30:00 +0000 (01:30 +0200)]
bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)

characters/bytes for non-negative n.  This makes it compatible with
read() methods of other file-like objects.

7 years agobpo-32107 - Improve MAC address calculation and fix test_uuid.py (#4600)
Barry Warsaw [Tue, 28 Nov 2017 22:26:04 +0000 (17:26 -0500)]
bpo-32107 - Improve MAC address calculation and fix test_uuid.py (#4600)

``uuid.getnode()`` now preferentially returns universally administered MAC addresses if available, over locally administered MAC addresses.  This makes a better guarantee for global uniqueness of UUIDs returned from ``uuid.uuid1()``.  If only locally administered MAC addresses are available, the first such one found is returned.

Also improve internal code style by being explicit about ``return None`` rather than falling off the end of the function.

Improve the test robustness.

7 years agobpo-32155: Revert distutils.config change (#4618)
Victor Stinner [Tue, 28 Nov 2017 22:19:26 +0000 (23:19 +0100)]
bpo-32155: Revert distutils.config change (#4618)

Revert distutils changes of the commit
696b501cd11dc429a0f661adeb598bfaf89e4112 and remove the realm
variable.

7 years agobpo-32159: Remove tools for CVS and Subversion (#4615)
Victor Stinner [Tue, 28 Nov 2017 21:29:32 +0000 (22:29 +0100)]
bpo-32159: Remove tools for CVS and Subversion (#4615)

CPython migrated from CVS to Subversion, to Mercurial, and then to
Git. CVS and Subversion are not more used to develop CPython.

* platform module: drop support for sys.subversion. The
  sys.subversion attribute has been removed in Python 3.3.
* Remove Misc/svnmap.txt
* Remove Tools/scripts/svneol.py
* Remove Tools/scripts/treesync.py

7 years agobpo-32157: Removed explicit quotes around %r and {!r}. (#4582)
Serhiy Storchaka [Tue, 28 Nov 2017 20:54:42 +0000 (22:54 +0200)]
bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)

7 years agoUse raw strings in the re module examples. (#4616)
Serhiy Storchaka [Tue, 28 Nov 2017 20:51:38 +0000 (22:51 +0200)]
Use raw strings in the re module examples. (#4616)

7 years agobpo-32154: Remove asyncio.windows_utils.socketpair (#4609)
Victor Stinner [Tue, 28 Nov 2017 20:33:20 +0000 (21:33 +0100)]
bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)

7 years agobpo-32071: Fix regression and add What's New entry (#4589)
Jonas Haag [Tue, 28 Nov 2017 19:40:44 +0000 (20:40 +0100)]
bpo-32071: Fix regression and add What's New entry (#4589)

* bpo-32071: Fix an undocumented behaviour regression

* bpo-32071: Add 3.7 release note entry for unittest -k

7 years agobpo-32046: Update 2to3 when converts operator.isCallable(obj). (#4417)
Dong-hee Na [Tue, 28 Nov 2017 16:26:56 +0000 (01:26 +0900)]
bpo-32046: Update 2to3 when converts operator.isCallable(obj). (#4417)

7 years agobpo-32150: Expand tabs to spaces in C files. (#4583)
Serhiy Storchaka [Tue, 28 Nov 2017 15:56:10 +0000 (17:56 +0200)]
bpo-32150: Expand tabs to spaces in C files. (#4583)

7 years agobpo-31440: Changed default module search path for windows
gauravbackback [Tue, 28 Nov 2017 15:16:30 +0000 (20:46 +0530)]
bpo-31440: Changed default module search path for windows

7 years agobpo-32155: Bugfixes found by flake8 F841 warnings (#4608)
Victor Stinner [Tue, 28 Nov 2017 14:30:32 +0000 (15:30 +0100)]
bpo-32155: Bugfixes found by flake8 F841 warnings (#4608)

* distutils.config: Use the PyPIRCCommand.realm attribute if set
* turtledemo: wait until macOS osascript command completes to not
  create a zombie process
* Tools/scripts/treesync.py: declare 'default_answer' and
  'create_files' as globals to modify them with the command line
  arguments. Previously, -y, -n, -f and -a options had no effect.

flake8 warning: "F841 local variable 'p' is assigned to but never
used".

7 years agobpo-32154: Remove asyncio.selectors (#4605)
Victor Stinner [Tue, 28 Nov 2017 14:19:56 +0000 (15:19 +0100)]
bpo-32154: Remove asyncio.selectors (#4605)

* Remove asyncio.selectors and asyncio._overlapped symbols from the
  namespace of the asyncio module
* Replace "from asyncio import selectors" with "import selectors"
* Replace "from asyncio import _overlapped" with "import _overlapped"

asyncio.selectors was added to support Python 3.3, which doesn't have
selectors in its standard library, and Python 3.4 in the same code
base. Same rationale for asyncio._overlapped. Python 3.3 reached its
end of life, and asyncio is no more maintained as a third party
module on PyPI.

7 years agoasyncio: Remove asyncio/compat.py (#4606)
Victor Stinner [Tue, 28 Nov 2017 13:43:52 +0000 (14:43 +0100)]
asyncio: Remove asyncio/compat.py (#4606)

The asyncio/compat.py file was written to support Python < 3.5 and
Python < 3.5.2. But Python 3.5 doesn't accept bugfixes anymore, only
security fixes. There is no more need to backport bugfixes to Python
3.5, and so no need to have a single code base for Python 3.5, 3.6
and 3.7.

Say hello (again) to "async" and "await", who became real keywords in
Python 3.7 ;-)

7 years agoasyncio: use directly socket.socketpair() (#4597)
Victor Stinner [Tue, 28 Nov 2017 10:15:26 +0000 (11:15 +0100)]
asyncio: use directly socket.socketpair() (#4597)

Since Python 3.5, socket.socketpair() is also available on Windows,
and so can be used directly, rather than using
asyncio.windows_utils.socketpair().

7 years agoasyncio: Fix BaseSelectorEventLoopTests (#4595)
Victor Stinner [Mon, 27 Nov 2017 23:35:55 +0000 (00:35 +0100)]
asyncio: Fix BaseSelectorEventLoopTests (#4595)

Currently, two tests fail with PYTHONASYNCIODEBUG=1 (or using -X
dev).

7 years agoasyncio: Remove unused Future._tb_logger attribute (#4596)
Victor Stinner [Mon, 27 Nov 2017 23:35:33 +0000 (00:35 +0100)]
asyncio: Remove unused Future._tb_logger attribute (#4596)

It was only used on Python 3.3, now only Future._log_traceback is
used.

7 years agobpo-31245: asyncio: Fix typo, isistance => isinstance (#4594)
Victor Stinner [Mon, 27 Nov 2017 23:34:08 +0000 (00:34 +0100)]
bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594)

7 years agoRevert "bpo-32107 - Better merge of #4494 (#4576)" (#4593)
Victor Stinner [Mon, 27 Nov 2017 23:30:21 +0000 (00:30 +0100)]
Revert "bpo-32107 - Better merge of #4494 (#4576)" (#4593)

This reverts commit 9522a218f7dff95c490ff359cc60e8c2af35f5c8.

7 years agobpo-32136: Separate embedding tests from C API tests (GH-4567)
Nick Coghlan [Mon, 27 Nov 2017 22:11:51 +0000 (08:11 +1000)]
bpo-32136: Separate embedding tests from C API tests (GH-4567)

Some parts of the C API are only relevant to larger
applications embedding CPython as a runtime engine.

The helpers to test those APIs are already separated
out into Programs/_testembed.c, this update moves
the associated test cases out into their own dedicated
test file.

7 years agoRevert "bpo-30487: automatically create a venv and install Sphinx when running make...
Ned Deily [Mon, 27 Nov 2017 22:07:32 +0000 (17:07 -0500)]
Revert "bpo-30487: automatically create a venv and install Sphinx when running make (GH-4346)" (#4592)

Fix breakage documented in bpo-32149.
This reverts commit d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.

7 years agobpo-32107 - Better merge of #4494 (#4576)
Barry Warsaw [Mon, 27 Nov 2017 19:40:10 +0000 (14:40 -0500)]
bpo-32107 - Better merge of #4494 (#4576)

Improve UUID1 MAC address calculation and related tests.

There are two bits in the MAC address that are relevant to UUID1.  The first is the locally administered vs. universally administered bit (second least significant of the first octet).   Physical network interfaces such as ethernet ports and wireless adapters will always be universally administered, but some interfaces --such as the interface that MacBook Pros communicate with their Touch Bars-- are locally administered.  The former are guaranteed to be globally unique, while the latter are demonstrably *not* globally unique and are in fact the same on every MBP with a Touch Bar.  With this bit is set, the MAC is locally administered; with it unset it is universally administered.

The other bit is the multicast bit (least significant bit of the first octet).  When no other MAC address can be found, RFC 4122 mandates that a random 48-bit number be generated.  This randomly generated number *must* have the multicast bit set.

The improvements in uuid.py include:

* Preferentially return a universally administered MAC address, falling back to a locally administered address if none of the former can be found.
* Improve several coding style issues, such as adding explicit returns of None, using a more readable bitmask pattern, and assuming that the ultimate fallback, random MAC generation will not fail (and propagating any exception there instead of swallowing them).

Improvements in test_uuid.py include:

* Always testing the calculated MAC for universal administration, unless explicitly disabled (i.e. for the random case), or implicitly disabled due to running in the Travis environment.  Travis test machines have *no* universally administered MAC address at the time of this writing.

7 years agobpo-27535: Fix memory leak with warnings ignore (#4489)
Victor Stinner [Mon, 27 Nov 2017 15:57:07 +0000 (16:57 +0100)]
bpo-27535: Fix memory leak with warnings ignore (#4489)

The warnings module doesn't leak memory anymore in the hidden
warnings registry for the "ignore" action of warnings filters.

The warn_explicit() function doesn't add the warning key to the
registry anymore for the "ignore" action.

7 years agobpo-32089: Use default action for ResourceWarning (#4584)
Victor Stinner [Mon, 27 Nov 2017 11:11:55 +0000 (12:11 +0100)]
bpo-32089: Use default action for ResourceWarning (#4584)

In development and debug mode, use the "default" action, rather than
the "always" action, for ResourceWarning in the default warnings
filters.

7 years agobpo-32051: Fix name shadowing in multiprocessing docs (GH-4469)
Jason Yang [Mon, 27 Nov 2017 01:18:33 +0000 (20:18 -0500)]
bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469)

7 years agobpo-23033: Improve SSL Certificate handling (GH-937)
Mandeep Singh [Sun, 26 Nov 2017 22:31:27 +0000 (04:01 +0530)]
bpo-23033:  Improve SSL Certificate handling (GH-937)

Wildcard is now supported in hostname when it is one and only character in
the leftmost segment.

7 years agobpo-29879: Update typing documentation. (GH-4573)
Ivan Levkivskyi [Sun, 26 Nov 2017 22:23:02 +0000 (23:23 +0100)]
bpo-29879: Update typing documentation. (GH-4573)

- Add "version added: 3.5.2" note where it was missing.
- Remove the mention that Reversible is new in 3.5.2

7 years agobpo-30487: automatically create a venv and install Sphinx when running make (GH-4346)
Caleb Hattingh [Sun, 26 Nov 2017 21:18:30 +0000 (07:18 +1000)]
bpo-30487: automatically create a venv and install Sphinx when running make (GH-4346)

7 years agobpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559)
xdegaye [Sun, 26 Nov 2017 09:31:44 +0000 (10:31 +0100)]
bpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559)

7 years agobpo-32096: Ensure new embedding test can find the encodings module (GH-4566)
Nick Coghlan [Sun, 26 Nov 2017 04:19:13 +0000 (14:19 +1000)]
bpo-32096: Ensure new embedding test can find the encodings module (GH-4566)

7 years agobpo-11063: Handle uuid.h being in default include path (GH-4565)
Nick Coghlan [Sun, 26 Nov 2017 03:04:46 +0000 (13:04 +1000)]
bpo-11063: Handle uuid.h being in default include path (GH-4565)

find_file() returns an empty list if it finds the requested
header on the standard include path, so header existence
checks need to be explicitly against "is not None".

7 years agomark fatal_error as noreturn (#4563)
Benjamin Peterson [Sat, 25 Nov 2017 21:02:55 +0000 (13:02 -0800)]
mark fatal_error as noreturn (#4563)

clang can't figure out that fatal_error is noreturn itself and emits warnings:

../cpython/Python/pylifecycle.c:2116:1: warning: function declared 'noreturn' should not return [-Winvalid-noreturn]
}
^
../cpython/Python/pylifecycle.c:2125:1: warning: function declared 'noreturn' should not return [-Winvalid-noreturn]
}
^

7 years agobpo-26856: Skip test_pwd on Android until issue 32033 is fixed (GH-4561)
xdegaye [Sat, 25 Nov 2017 16:32:27 +0000 (17:32 +0100)]
bpo-26856: Skip test_pwd on Android until issue 32033 is fixed (GH-4561)

7 years agobpo-32059: setup.py now also searches the sysroot paths (GH-4452)
xdegaye [Sat, 25 Nov 2017 16:25:30 +0000 (17:25 +0100)]
bpo-32059: setup.py now also searches the sysroot paths (GH-4452)

detect_modules() in setup.py now also searches the sysroot paths when
cross-compiling.

7 years agobpo-24641: Improved error message for JSON unserializible keys. (#4364)
Serhiy Storchaka [Sat, 25 Nov 2017 15:38:20 +0000 (17:38 +0200)]
bpo-24641: Improved error message for JSON unserializible keys. (#4364)

Also updated an example for default() in the module docstring.
Removed quotes around type name in other error messages.

7 years agobpo-32071: Add unittest -k option (#4496)
Jonas Haag [Sat, 25 Nov 2017 15:23:52 +0000 (16:23 +0100)]
bpo-32071: Add unittest -k option (#4496)

* bpo-32071: Add unittest -k option

7 years agobpo-28334: netrc() now uses expanduser() to find .netrc file (GH-4537)
Berker Peksag [Sat, 25 Nov 2017 10:37:22 +0000 (13:37 +0300)]
bpo-28334: netrc() now uses expanduser() to find .netrc file (GH-4537)

Previously, netrc.netrc() was raised an exception if $HOME is not set.

Authored-By: Dimitri Merejkowsky <dimitri.merejkowsky@tanker.io>
7 years agoImprove Scheduler Objects documentation. (GH-4556)
Mariatta [Sat, 25 Nov 2017 05:43:01 +0000 (21:43 -0800)]
Improve Scheduler Objects documentation. (GH-4556)

Mention that the lower the priority number, the higher priority it represents.

7 years agobpo-30004: Fix the code example of using group in Regex Howto Docs (GH-4443)
Mandeep Bhutani [Sat, 25 Nov 2017 04:56:00 +0000 (22:56 -0600)]
bpo-30004: Fix the code example of using group in Regex Howto Docs (GH-4443)

The provided code example was supposed to find repeated words, however it returned false results.

7 years agobpo-32030: Add _PyPathConfig_Init() (#4551)
Victor Stinner [Sat, 25 Nov 2017 02:17:57 +0000 (03:17 +0100)]
bpo-32030: Add _PyPathConfig_Init() (#4551)

* Add _PyPathConfig_Init() and _PyPathConfig_Fini()
* Remove _Py_GetPathWithConfig()
* _PyPathConfig_Init() returns _PyInitError to allow to handle errors
  properly
* Add pathconfig_clear()
* Windows calculate_path_impl(): replace Py_FatalError() with
  _PyInitError
* Py_FinalizeEx() now calls _PyPathConfig_Fini() to release memory
* Fix _Py_InitializeMainInterpreter() regression: don't initialize
  path config if _disable_importlib is false
* PyPathConfig now uses dynamically allocated memory

7 years agobpo-32128: Skip test_nntplib.test_article_head_body() (#4552)
Victor Stinner [Sat, 25 Nov 2017 01:42:18 +0000 (02:42 +0100)]
bpo-32128: Skip test_nntplib.test_article_head_body() (#4552)

The NNTP server currently has troubles with SSL, whereas we don't
have the control on this server. This test blocks all CIs, so disable
it until a fix can be found.

7 years agoAsyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414)
Ashley Camba [Fri, 24 Nov 2017 23:39:39 +0000 (00:39 +0100)]
Asyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414)

7 years agobpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)
Victor Stinner [Fri, 24 Nov 2017 23:01:23 +0000 (00:01 +0100)]
bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)

* Py_Main() now calls Py_SetProgramName() earlier to be able to get
  the program name in _PyMainInterpreterConfig_ReadEnv().
* Rename prog to program_name
* Rename progpath to program_name

7 years agobpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)
Victor Stinner [Fri, 24 Nov 2017 21:55:40 +0000 (22:55 +0100)]
bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)

Py_GetPath() and Py_Main() now call
_PyMainInterpreterConfig_ReadEnv() to share the same code to get
environment variables.

Changes:

* Add _PyMainInterpreterConfig_ReadEnv()
* Add _PyMainInterpreterConfig_Clear()
* Add _PyMem_RawWcsdup()
* _PyMainInterpreterConfig: rename pythonhome to home
* Rename _Py_ReadMainInterpreterConfig() to
  _PyMainInterpreterConfig_Read()
* Use _Py_INIT_USER_ERR(), instead of _Py_INIT_ERR(), for decoding
  errors: the user is able to fix the issue, it's not a bug in
  Python. Same change was made in _Py_INIT_NO_MEMORY().
* Remove _Py_GetPythonHomeWithConfig()

7 years agobpo-32124: Document C functions safe before init (#4540)
Victor Stinner [Fri, 24 Nov 2017 21:30:27 +0000 (22:30 +0100)]
bpo-32124: Document C functions safe before init (#4540)

Explicitly document C functions and C variables that can be set
before Py_Initialize().

7 years agobpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)
Victor Stinner [Fri, 24 Nov 2017 21:06:38 +0000 (22:06 +0100)]
bpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)

This flag was deprecated and wasn't used anymore since Python 2.0.

7 years agobpo-28684: Remove useless import added by the previous commit (GH-4547)
xdegaye [Fri, 24 Nov 2017 17:56:22 +0000 (18:56 +0100)]
bpo-28684: Remove useless import added by the previous commit (GH-4547)

7 years agoImprove the String tutorial docs (GH-4541)
Will White [Fri, 24 Nov 2017 17:28:12 +0000 (17:28 +0000)]
Improve the String tutorial docs (GH-4541)

The paragraph that contains example of string literal concatenation was placed
after the section about concatenation using the '+' sign.
Moved the paragraph to the appropriate section.

7 years agobpo-28684: asyncio tests handle PermissionError raised on binding unix sockets (GH...
xdegaye [Fri, 24 Nov 2017 16:35:55 +0000 (17:35 +0100)]
bpo-28684: asyncio tests handle PermissionError raised on binding unix sockets (GH-4503)

The test.support.skip_unless_bind_unix_socket() decorator is used to skip
asyncio tests that fail because the platform lacks a functional bind()
function for unix domain sockets (as it is the case for non root users on the
recent Android versions that run now SELinux in enforcing mode).

7 years agobpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)
Berker Peksag [Fri, 24 Nov 2017 15:11:18 +0000 (18:11 +0300)]
bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)

The previous behavior was to raise an exception

    NotImplementedError: result of type 0

when the value of the property is VT_EMPTY.

7 years agobpo-32096: Remove obj and mem from _PyRuntime (#4532)
Victor Stinner [Fri, 24 Nov 2017 11:09:24 +0000 (12:09 +0100)]
bpo-32096: Remove obj and mem from _PyRuntime (#4532)

bpo-32096, bpo-30860:  Partially revert the commit
2ebc5ce42a8a9e047e790aefbf9a94811569b2b6:

* Move structures back from Include/internal/mem.h to
  Objects/obmalloc.c
* Remove _PyObject_Initialize() and _PyMem_Initialize()
* Remove Include/internal/pymalloc.h
* Add test_capi.test_pre_initialization_api():
   Make sure that it's possible to call Py_DecodeLocale(), and then call
   Py_SetProgramName() with the decoded string, before Py_Initialize().

PyMem_RawMalloc() and Py_DecodeLocale() can be called again before
_PyRuntimeState_Init().

Co-Authored-By: Eric Snow <ericsnowcurrently@gmail.com>
7 years agobpo-12382: Make OpenDatabase() raise better exception messages (GH-4528)
Berker Peksag [Fri, 24 Nov 2017 09:53:58 +0000 (12:53 +0300)]
bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528)

Previously, 'msilib.OpenDatabase()' function raised a
cryptical exception message when it couldn't open or
create an MSI file. For example:

    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    _msi.MSIError: unknown error 6e

7 years agoExtending Python Doc minor updates (GH-4518)
Emanuele Gaifas [Fri, 24 Nov 2017 08:49:57 +0000 (09:49 +0100)]
Extending Python Doc minor updates  (GH-4518)

Move footnote markers to be closer to the related terminology:
before the end of the sentence, instead of after.

7 years agobpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (#4529)
Berker Peksag [Thu, 23 Nov 2017 23:40:26 +0000 (02:40 +0300)]
bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (#4529)

7 years agobpo-32099 Add deque variant of roundrobin() recipe (#4497)
Raymond Hettinger [Thu, 23 Nov 2017 21:32:23 +0000 (13:32 -0800)]
bpo-32099 Add deque variant of roundrobin() recipe (#4497)

* Minor wording tweaks

7 years agobpo-19610: setup() now raises TypeError for invalid types (GH-4519)
Berker Peksag [Thu, 23 Nov 2017 18:34:20 +0000 (21:34 +0300)]
bpo-19610: setup() now raises TypeError for invalid types (GH-4519)

The Distribution class now explicitly raises an
exception when 'classifiers', 'keywords' and
'platforms' fields are not specified as a list.

7 years agobpo-31979: Remove unused align_maxchar() function (#4527)
Victor Stinner [Thu, 23 Nov 2017 18:02:23 +0000 (19:02 +0100)]
bpo-31979: Remove unused align_maxchar() function (#4527)

7 years agobpo-32030: Fix calculate_path() on macOS (#4526)
Victor Stinner [Thu, 23 Nov 2017 18:02:04 +0000 (19:02 +0100)]
bpo-32030: Fix calculate_path() on macOS (#4526)

7 years agobpo-27535: Cleanup create_filter() (#4516)
Victor Stinner [Thu, 23 Nov 2017 16:13:44 +0000 (17:13 +0100)]
bpo-27535: Cleanup create_filter() (#4516)

create_filter() now expects the action as a _Py_Identifier which
avoids string comparison, and more important, to avoid handling the
"unknown action" annoying case.

7 years agobpo-32030: Rewrite calculate_path() (#4521)
Victor Stinner [Thu, 23 Nov 2017 16:03:20 +0000 (17:03 +0100)]
bpo-32030: Rewrite calculate_path() (#4521)

* calculate_path() rewritten in Modules/getpath.c and PC/getpathp.c
* Move global variables into a new PyPathConfig structure.
* calculate_path():

  * Split the huge calculate_path() function into subfunctions.
  * Add PyCalculatePath structure to pass data between subfunctions.
  * Document PyCalculatePath fields.
  * Move cleanup code into a new calculate_free() subfunction
  * calculate_init() now handles Py_DecodeLocale() failures properly
  * calculate_path() is now atomic: only replace PyPathConfig
    (path_config) at once on success.

* _Py_GetPythonHomeWithConfig() now returns an error on failure
* Add _Py_INIT_NO_MEMORY() helper: report a memory allocation failure
* Coding style fixes (PEP 7)

7 years agobpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459)
Berker Peksag [Thu, 23 Nov 2017 12:47:30 +0000 (15:47 +0300)]
bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459)

7 years agobpo-28762: Revert last commit (now using Android Unified Headers) (GH-4488)
xdegaye [Thu, 23 Nov 2017 11:01:36 +0000 (12:01 +0100)]
bpo-28762: Revert last commit (now using Android Unified Headers) (GH-4488)

7 years agobpo-29040: Support building Android with Unified Headers (GH-4492)
xdegaye [Thu, 23 Nov 2017 10:44:38 +0000 (11:44 +0100)]
bpo-29040: Support building Android with Unified Headers (GH-4492)

7 years agobpo-28538: Revert all the changes (now using Android Unified Headers) (GH-4479)
xdegaye [Thu, 23 Nov 2017 10:13:22 +0000 (11:13 +0100)]
bpo-28538: Revert all the changes (now using Android Unified Headers) (GH-4479)

7 years agobpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)
Victor Stinner [Thu, 23 Nov 2017 09:43:14 +0000 (10:43 +0100)]
bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)

* Py_Main() now reads the PYTHONHOME environment variable
* Add _Py_GetPythonHomeWithConfig() private function
* Add _PyWarnings_InitWithConfig()
* init_filters() doesn't get the current core configuration from the
  current interpreter or Python thread anymore. Pass explicitly the
  configuration to _PyWarnings_InitWithConfig().
* _Py_InitializeCore() now fails on _PyWarnings_InitWithConfig()
  failure.
* Pass configuration as constant

7 years agobpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)
Victor Stinner [Thu, 23 Nov 2017 00:49:45 +0000 (01:49 +0100)]
bpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)

Move _PyCoreConfig.module_search_path_env to _PyMainInterpreterConfig
structure.

7 years agobpo-10049: Add a "no-op" (null) context manager to contextlib (GH-4464)
Jesse-Bakker [Thu, 23 Nov 2017 00:23:28 +0000 (01:23 +0100)]
bpo-10049: Add a "no-op" (null) context manager to contextlib (GH-4464)

Adds a simpler and faster alternative to ExitStack for handling
single optional context managers without having to change the
lexical structure of your code.

7 years agobpo-32100: IDLE: Fix pathbrowser errors; improve tests. (#4484)
Cheryl Sabella [Thu, 23 Nov 2017 00:05:25 +0000 (19:05 -0500)]
bpo-32100: IDLE: Fix pathbrowser errors; improve tests. (#4484)

Patch mostly by Cheryl Sabella

7 years agobpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)
Victor Stinner [Wed, 22 Nov 2017 23:12:09 +0000 (00:12 +0100)]
bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)

Changes:

* Py_Main() initializes _PyCoreConfig.module_search_path_env from
  the PYTHONPATH environment variable.
* PyInterpreterState_New() now initializes core_config and config
  fields
* Compute sys.path a little bit ealier in
  _Py_InitializeMainInterpreter() and new_interpreter()
* Add _Py_GetPathWithConfig() private function.

7 years agobpo-27535: Optimize warnings.warn() (#4508)
Victor Stinner [Wed, 22 Nov 2017 22:51:42 +0000 (23:51 +0100)]
bpo-27535: Optimize warnings.warn() (#4508)

* Optimize warnings.filterwarnings(). Replace re.compile('') with
  None to avoid the cost of calling a regex.match() method, whereas
  it always matchs.
* Optimize get_warnings_attr(): replace PyObject_GetAttrString() with
  _PyObject_GetAttrId().

Cleanup also create_filter():

* Use _Py_IDENTIFIER() to allow to cleanup strings at Python
  finalization
* Replace Py_FatalError() with a regular exceptions

7 years agobpo-31324: Fix test.support.set_match_tests(None) (#4505)
Victor Stinner [Wed, 22 Nov 2017 19:58:59 +0000 (20:58 +0100)]
bpo-31324: Fix test.support.set_match_tests(None) (#4505)

7 years agobpo-31324: Optimize support._match_test() (#4421)
Victor Stinner [Tue, 21 Nov 2017 23:34:02 +0000 (15:34 -0800)]
bpo-31324: Optimize support._match_test() (#4421)

* Rename support._match_test() to support.match_test(): make it
  public
* Remove support.match_tests global variable. It is replaced with a
  new support.set_match_tests() function, so match_test() doesn't
  have to check each time if patterns were modified.
* Rewrite match_test(): use different code paths depending on the
  kind of patterns for best performances.

Co-Authored-By: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to document...
AraHaan [Tue, 21 Nov 2017 16:06:26 +0000 (11:06 -0500)]
bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to documentation. (#4491)

7 years agobpo-31672 - Add one last minor clarification for idpattern (#4483)
Barry Warsaw [Tue, 21 Nov 2017 15:28:13 +0000 (10:28 -0500)]
bpo-31672 - Add one last minor clarification for idpattern (#4483)

Add one last minor clarification for idpattern

7 years agoAdd comment and improve variable name in roundrobin() (#4486)
Raymond Hettinger [Tue, 21 Nov 2017 08:23:34 +0000 (00:23 -0800)]
Add comment and improve variable name in roundrobin() (#4486)

7 years agobpo-32043: Rephrase -X dev documentation (#4478)
Victor Stinner [Tue, 21 Nov 2017 02:59:50 +0000 (18:59 -0800)]
bpo-32043: Rephrase -X dev documentation (#4478)

* should not be more verbose if the code is correct
* enabled checks can be "expensive"

7 years agobpo-32030: Add more options to _PyCoreConfig (#4485)
Victor Stinner [Tue, 21 Nov 2017 02:12:22 +0000 (18:12 -0800)]
bpo-32030: Add more options to _PyCoreConfig (#4485)

Py_Main() now handles two more -X options:

* -X showrefcount: new _PyCoreConfig.show_ref_count field
* -X showalloccount: new _PyCoreConfig.show_alloc_count field

7 years agobpo-32089: Fix warnings filters in dev mode (#4482)
Victor Stinner [Tue, 21 Nov 2017 01:32:40 +0000 (17:32 -0800)]
bpo-32089: Fix warnings filters in dev mode (#4482)

The developer mode (-X dev) now creates all default warnings filters
to order filters in the correct order to always show ResourceWarning
and make BytesWarning depend on the -b option.

Write a functional test to make sure that ResourceWarning is logged
twice at the same location in the developer mode.

Add a new 'dev_mode' field to _PyCoreConfig.

7 years agobpo-32094: Update subprocess for -X dev (#4480)
Victor Stinner [Mon, 20 Nov 2017 23:24:56 +0000 (15:24 -0800)]
bpo-32094: Update subprocess for -X dev (#4480)

Modify subprocess._args_from_interpreter_flags() to handle -X dev
option.

Add also unit tests for test.support.args_from_interpreter_flags()
and test.support.optim_args_from_interpreter_flags().

7 years agobpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be optiona...
Yury Selivanov [Mon, 20 Nov 2017 22:26:28 +0000 (17:26 -0500)]
bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be optional (#4447)

7 years agobpo-32088: Display Deprecation in debug mode (#4474)
Victor Stinner [Mon, 20 Nov 2017 17:47:03 +0000 (09:47 -0800)]
bpo-32088: Display Deprecation in debug mode (#4474)

When Python is build is debug mode (Py_DEBUG), DeprecationWarning,
PendingDeprecationWarning and ImportWarning warnings are now
displayed by default.

test_venv: run "-m pip" and "-m ensurepip._uninstall" with -W
ignore::DeprecationWarning since pip code is not part of Python.

7 years agobpo-32050: Fix -x option documentation (#4475)
Victor Stinner [Mon, 20 Nov 2017 16:08:03 +0000 (08:08 -0800)]
bpo-32050: Fix -x option documentation (#4475)

The line number in correct when using the -x option: Py_Main() uses
ungetc() to not skip the first newline character.

7 years agobpo-32047: -X dev enables asyncio debug mode (#4418)
Victor Stinner [Mon, 20 Nov 2017 15:14:07 +0000 (07:14 -0800)]
bpo-32047: -X dev enables asyncio debug mode (#4418)

The new -X dev command line option now also enables asyncio debug
mode.

7 years agoRemove duplicated import from datetime tests (#4444)
Riccardo Magliocchetti [Mon, 20 Nov 2017 08:48:56 +0000 (09:48 +0100)]
Remove duplicated import from datetime tests (#4444)

7 years agobpo-30904: Removed duplicated Host: header. (#4465)
Vinay Sajip [Sun, 19 Nov 2017 18:36:17 +0000 (18:36 +0000)]
bpo-30904: Removed duplicated Host: header. (#4465)

7 years agoRemove outdated .pyo reference from msilib docs (GH-4461)
Berker Peksag [Sun, 19 Nov 2017 10:04:25 +0000 (13:04 +0300)]
Remove outdated .pyo reference from msilib docs (GH-4461)

Since f299abdafa0f2b6eb7abae274861b19b361c96bc
the remove_pyc() method no longer tries to
remove .pyo files.

7 years agoDocument parameters of BaseServer.finish_request() (GH-4445)
Masayuki Yamamoto [Sun, 19 Nov 2017 07:33:37 +0000 (16:33 +0900)]
Document parameters of BaseServer.finish_request() (GH-4445)

7 years ago[Doc] Update opcode for var-positional arguments (#4446)
Moses Koledoye [Sat, 18 Nov 2017 22:49:15 +0000 (23:49 +0100)]
[Doc] Update opcode for var-positional arguments (#4446)

`BUILD_MAP_UNPACK_WITH_CALL` was duplicated as the opcode for both var-positional and var-keyword arguments. The opcode for the former was updated as `BUILD_TUPLE_UNPACK_WITH_CALL`.

7 years agobpo-32031: Fix pydoc `test_mixed_case_module_names_are_lower_cased` (GH-4441)
xdegaye [Sat, 18 Nov 2017 17:20:21 +0000 (18:20 +0100)]
bpo-32031: Fix pydoc `test_mixed_case_module_names_are_lower_cased` (GH-4441)

When there is a symlink in the directory path of the standard library.

7 years agobpo-29185: Fix `test_distutils` failures on Android (GH-4438)
xdegaye [Sat, 18 Nov 2017 17:17:16 +0000 (18:17 +0100)]
bpo-29185: Fix `test_distutils` failures on Android (GH-4438)

* Run gzip with separate command line options (Android understands  '-f9' as the name of a file).
* Creation of a hard link is controled by SELinux on Android.

7 years agobpo-29184: Skip test_socketserver tests on PermissionError raised by Android (GH...
xdegaye [Sat, 18 Nov 2017 17:10:53 +0000 (18:10 +0100)]
bpo-29184: Skip test_socketserver tests on PermissionError raised by Android (GH-4387)

7 years agobpo-32069: Drop legacy SSL transport (#4451)
Andrew Svetlov [Sat, 18 Nov 2017 16:54:05 +0000 (18:54 +0200)]
bpo-32069: Drop legacy SSL transport (#4451)

* Drop legacy SSL transport

* Drop unused import

* Fix Windows tests

* Drop never executed on Python 3.4+ code

7 years agobpo-31867: Remove duplicates in default mimetypes. (#4388)
Henk-Jaap Wagenaar [Fri, 17 Nov 2017 10:10:19 +0000 (10:10 +0000)]
bpo-31867: Remove duplicates in default mimetypes. (#4388)