master
Commits on Dec 23, 2020
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-32381: pymain_run_command() uses PyCF_IGNORE_COOKIE (GH-23724)
The coding cookie (ex: "# coding: latin1") is now ignored in the command passed to the -c command line option. Since pymain_run_command() uses UTF-8, pass PyCF_IGNORE_COOKIE compiler flag to the parser. pymain_run_python() no longer propages compiler flags between function calls.
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-28468: Fix typo in _os_release_candidates (GH-23913)
Automerge-Triggered-By: GH:tiran
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-1635741: Port resource extension module to module state (GH-23462)
Signed-off-by: Christian Heimes <christian@python.org>
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42620: Improve socket.getsockname doc string (GH-23742)
Signed-off-by: Christian Heimes <christian@python.org>
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-39465: Add pycore_atomic_funcs.h header (GH-20766)
Add pycore_atomic_funcs.h internal header file: similar to pycore_atomic.h but don't require to declare variables as atomic. Add _Py_atomic_size_get() and _Py_atomic_size_set() functions.
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 22, 2020
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-34463: Make python tracebacks identical to C tracebacks for Syntaโฆ
โฆxErrors without a lineno (GH-23427)
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
[doc] Fix missing commas in signatures (#23693)
* Fix star in signatures * Fix comma in signatures
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42688: Fix ffi alloc/free when using external libffi on macos (GHโฆ
โฆ-23868) Automerge-Triggered-By: GH:ronaldoussoren
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 21, 2020
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)
* Mark reraise after except blocks as artificial. * Update importlib * Update dis test.
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
[WIP/RFC] bpo-15872: tests: remove oddity from test_rmtree_errors (GHโฆ
โฆ-22967) This was added for (some) Windows buildbots back in 2012, and should either not be necessary anymore, or it should probably get investigated why "\*.*" gets added to filenames in the first place. Ref: Automerge-Triggered-By: GH:hynek
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 20, 2020
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42669: Document that `except` rejects nested tuples (GH-23822)
In Python 2, it was possible to use `except` with a nested tuple, and occasionally natural. For example, `zope.formlib.interfaces.InputErrors` is a tuple of several exception classes, and one might reasonably think to do something like this: try: self.getInputValue() return True except (InputErrors, SomethingElse): return False As of Python 3.0, this raises `TypeError: catching classes that do not inherit from BaseException is not allowed` instead: one must instead either break it up into multiple `except` clauses or flatten the tuple. However, the reference documentation was never updated to match this new restriction. Make it clear that the definition is no longer recursive. Automerge-Triggered-By: GH:ericvsmithVerified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using cโฆ
โฆonfigure (GH-23708) Now all platforms use a value for the "EXT_SUFFIX" build variable derived from SOABI (for instance in FreeBSD, "EXT_SUFFIX" is now ".cpython-310d.so" instead of ".so"). Previously only Linux, Mac and VxWorks were using a value for "EXT_SUFFIX" that included "SOABI". Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
2Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 19, 2020
-
bpo-41724: Explain when the conversion is not possible with detect_tyโฆ
โฆpes enabled (GH-23855) * Explain when the conversion is not possible with detect_types enabled
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-42630: Improve error reporting in Tkinter for absent default root (โฆ
โฆGH-23781) * Tkinter functions and constructors which need a default root window raise now RuntimeError with descriptive message instead of obscure AttributeError or NameError if it is not created yet or cannot be created automatically. * Add tests for all functions which use default root window. * Fix import in the pynche script.
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)
zipimport's _unmarshal_code swallows import errors and then _get_module_code doesn't know the cause of the error, and returns the generic, and sometimes incorrect, 'could not find...'. Automerge-Triggered-By: GH:brettcannon
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 18, 2020
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHubโs key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits