Mark Shannon
04492cbc9a
GH-91095: Specialize calls to normal Python classes. (GH-99331)
2023-06-22 09:48:19 +01:00
Irit Katriel
c01da2896a
gh-105481: refactor instr flag related code into a new InstructionFlags class ( #105950 )
2023-06-21 23:14:43 +00:00
Victor Stinner
18a7c86697
gh-104212: Explain how to port imp.load_source() ( #105978 )
...
Explain how to port removed imp.load_source() to importlib in What's
New in Python 3.12.
2023-06-22 00:18:31 +02:00
Irit Katriel
a2392720d6
gh-84436: update docs on Py_None/Py_True/Py_False/Py_Ellipsis becoming immortal ( #105195 )
2023-06-21 21:13:25 +01:00
Victor Stinner
4328dc6465
gh-105927: finalize_modules_clear_weaklist() uses _PyWeakref_GET_REF() ( #105971 )
...
finalize_modules_clear_weaklist() now holds a strong reference to the
module longer than before: replace PyWeakref_GET_OBJECT() with
_PyWeakref_GET_REF().
2023-06-21 21:50:20 +02:00
Victor Stinner
fc32522b08
gh-105927: type_from_ref() uses _PyWeakref_GET_REF() ( #105963 )
...
type_from_ref() now returns a strong reference to the type, instead
of a borrowed reference: replace PyWeakref_GET_OBJECT() with
_PyWeakref_GET_REF().
2023-06-21 16:35:58 +02:00
Victor Stinner
2178bbc121
gh-105927: Fix test_weakref_capi() refleak ( #105966 )
...
Test PyWeakref_GetRef(NULL) and PyWeakref_GetObject(NULL).
2023-06-21 16:35:41 +02:00
Victor Stinner
48d107a87d
gh-105927: _ctypes use PyWeakref_GetRef() ( #105964 )
...
Rename PyDict_GetItemProxy() to _PyDict_GetItemProxy() and mark it as
static. _PyDict_GetItemProxy() now returns a strong reference,
instead of a borrowed reference: replace PyWeakref_GET_OBJECT() with
_PyWeakref_GET_REF().
2023-06-21 16:34:27 +02:00
Victor Stinner
74da6f7c9f
gh-105927: _ssl uses _PyWeakref_GET_REF() ( #105965 )
2023-06-21 16:33:32 +02:00
Mathieu Dupuy
c5a722be5f
stdtypes.rst: remove a period ( #105959 )
2023-06-21 15:21:37 +01:00
Victor Stinner
fb1e691e4b
gh-105927: _abc and _thread use PyWeakref_GetRef() ( #105961 )
...
Hold a strong reference on the object, rather than using a borrowed reference:
replace PyWeakref_GET_OBJECT() with PyWeakref_GetRef() and
_PyWeakref_GET_REF().
Remove assert(PyWeakref_CheckRef(localweakref)) since it's already
tested by _PyWeakref_GET_REF().
2023-06-21 15:44:25 +02:00
Sviatoslav Sydorenko
eaa6702280
Use CSV-separated outputs @ get-changed-files @ CI ( #105151 )
...
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
2023-06-21 13:42:59 +03:00
Victor Stinner
9c44656feb
gh-105927: Add PyWeakref_GetRef() function ( #105932 )
...
Add tests on PyWeakref_NewRef(), PyWeakref_GetObject(),
PyWeakref_GET_OBJECT() and PyWeakref_GetRef().
2023-06-21 11:40:09 +02:00
Victor Stinner
4d140e5e06
Add Py_TYPE() to Doc/data/refcounts.dat ( #105949 )
2023-06-20 23:57:54 +02:00
Lysandros Nikolaou
6e40ee6e84
gh-105915: Fix SyntaxWarning becoming a SyntaxError with -We in test_fstring ( #105943 )
2023-06-20 16:13:07 +02:00
Lysandros Nikolaou
4b431d2e90
gh-105915: Add 'r' prefix to not emit SyntaxWarning in test_fstring ( #105940 )
...
Co-authored-by: @sunmy2019
2023-06-20 14:49:00 +02:00
Lysandros Nikolaou
6586cee27f
gh-105938: Emit a SyntaxWarning for escaped braces in an f-string ( #105939 )
2023-06-20 12:38:46 +00:00
Victor Stinner
155577de1b
make regen-stdlib-module-names rejects test modules ( #105921 )
...
Make sure that sys.stdlib_module_names doesn't contain test modules.
2023-06-20 10:12:44 +02:00
Victor Stinner
cb388c9a85
gh-105927: Add _PyWeakref_GET_REF() internal function ( #105929 )
...
Add new pycore_weakref.h internal header file.
2023-06-20 08:52:40 +02:00
Victor Stinner
03f1a132ee
gh-105922: Add PyImport_AddModuleRef() function ( #105923 )
...
* Add tests on PyImport_AddModuleRef(), PyImport_AddModule() and
PyImport_AddModuleObject().
* pythonrun.c: Replace Py_XNewRef(PyImport_AddModule(name)) with
PyImport_AddModuleRef(name).
2023-06-20 08:48:14 +02:00
Victor Stinner
7f97c8e367
gh-105927: Refactor weakrefobject.c ( #105928 )
...
* Rename proxy_checkref() to proxy_check_ref().
* proxy_check_ref() now checks the object, not the proxy.
* Most functions take PyObject* instead of PyWeakReference*.
* Remove redundant calls to PyWeakref_GET_OBJECT().
2023-06-19 23:31:17 +00:00
Victor Stinner
a5c2ad0c3d
gh-105922: Refactor PyRun_InteractiveOneObjectEx() ( #105925 )
...
Refactor PyRun_InteractiveOneObjectEx(), _PyRun_SimpleFileObject()
and PyRun_SimpleStringFlags():
* Keep a strong reference to the __main__ module while using its
dictionary (PyModule_GetDict()). Use PyImport_AddModule() with
Py_XNewRef().
* Declare variables closer to where they are defined.
* Rename variables to use name longer than 1 character.
* Add pyrun_one_parse_ast() sub-function.
2023-06-20 00:55:23 +02:00
Irit Katriel
33f0a8578b
gh-105481: generate _specializations and _specialized_instructions from bytecodes.c ( #105913 )
2023-06-19 23:47:04 +01:00
Crowthebird
28187a9c4f
gh-105908: fix `barry_as_FLUFL` future import ( #105909 )
2023-06-19 22:50:57 +01:00
T. Wouters
1858db7cbd
GH-105808: Fix a regression introduced in GH-101251 ( #105910 )
...
Fix a regression introduced in pythonGH-101251, causing GzipFile.flush() to
not flush the compressor (nor pass along the zip_mode argument).
2023-06-19 17:09:04 +00:00
Victor Stinner
7a56a4148c
gh-104212: Explain how to port imp code to importlib ( #105905 )
2023-06-19 16:13:11 +02:00
Lysandros Nikolaou
ab3823a97b
gh-71299: Fix __all__ in tokenize ( #105907 )
...
Co-authored-by: Unit03
2023-06-19 13:31:57 +02:00
Mark Shannon
581619941e
GH-104584: Assorted fixes for the optimizer API. (GH-105683)
...
* Add test for long loops
* Clear ENTER_EXECUTOR when deopting code objects.
2023-06-19 10:32:20 +01:00
Alex Waygood
4426279a43
typing docs: Improve the intro to each section ( #105901 )
2023-06-19 00:54:29 +01:00
Erlend E. Aasland
6849acb3fe
gh-105875: Require SQLite 3.15.2 or newer ( #105876 )
...
SQLite 3.15.2 was released 2016-11-28.
2023-06-19 00:29:08 +02:00
Hugo van Kemenade
bc07c8f096
Docs: move sphinx-lint to pre-commit ( #105750 )
2023-06-18 11:52:05 +00:00
Erlend E. Aasland
dba7217511
gh-105844: Use devguide terminology to denote versions ( #105882 )
2023-06-18 12:25:23 +02:00
Irit Katriel
14d01262da
gh-105481: remove HAS_ARG, HAS_CONST, IS_JUMP_OPCODE, IS_PSEUDO_OPCODE and replace by their new versions ( #105865 )
2023-06-17 17:00:16 +01:00
Erlend E. Aasland
34e93d3998
CI: Bump macOS build to use OpenSSL v3.0 ( #105538 )
2023-06-16 21:00:37 +02:00
Brandt Bucher
2beab5bdef
GH-105840: Fix assertion failures when specializing calls with too many __defaults__ (GH-105847)
2023-06-16 11:01:15 -07:00
Carl Meyer
b356a4749a
gh-105678: document SET_FUNCTION_ATTRIBUTE ( #105843 )
2023-06-16 12:36:59 -05:00
Jelle Zijlstra
957a974d4f
gh-104799: PEP 695 backward compatibility for ast.unparse ( #105846 )
2023-06-16 09:31:23 -07:00
Alex Waygood
70c075c194
gh-105834: Add tests for calling `issubclass()` between two protocols ( #105835 )
...
Some parts of the implementation of `typing.Protocol` had poor test coverage
2023-06-16 15:47:55 +00:00
Hugo van Kemenade
101d5ec7d7
CI: Remove docs build from Azure Pipelines ( #105823 )
2023-06-16 14:04:34 +03:00
Erlend E. Aasland
0bffe1acd7
gh-105844: Consistently use 'minor version' for X.Y versions ( #105851 )
2023-06-16 10:41:47 +02:00
chgnrdv
0d0963737a
Fix inaccuracies in "Assorted Topics" section of "Defining Extension Types" tutorial ( #104969 )
2023-06-16 07:10:59 +00:00
Nikita Sobolev
1af8251d9e
gh-105433: Add `pickle` tests for PEP695 ( #105443 )
2023-06-15 17:58:40 -07:00
Alex Doe
486b52a315
bpo-44530: Document the change in MAKE_FUNCTION behavior ( #93189 )
...
* bpo-44530: Document the change in MAKE_FUNCTION behavior
Fixes dis module documentation for MAKE_FUNCTION due to 2f180ce2cb
(bpo-44530, released as part of 3.11) removes the qualified name at TOS
2023-06-15 19:04:57 -05:00
Tian Gao
25a64fd28a
GH-103124: Multiline statement support for pdb (GH-103125)
2023-06-15 23:34:42 +00:00
Brandt Bucher
a4056c8f9c
GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)
2023-06-15 15:45:13 -07:00
Lysandros Nikolaou
3af2dc7588
gh-105831: Fix NEWS blurb from gh-105828 ( #105833 )
2023-06-15 19:10:33 +02:00
Lysandros Nikolaou
d382ad4915
gh-105820: Fix tok_mode expression buffer in file & readline tokenizer ( #105828 )
2023-06-15 16:21:24 +00:00
Victor Stinner
8f10140e74
gh-105751, test_ctypes: Remove disabled tests ( #105826 )
...
* The following tests were disabled since the initial ctypes commit
in 2006, commit babddfca758abe34ff12023f63b18d745fae7ca9:
* Callbacks.test_char_p()
* DeletePointerTestCase.test_X()
* NumberTestCase.test_perf()
* StructureTestCase.test_subclass_creation()
* Tests.test_X() of test_byteswap
* NumberTestCase.test_bool_from_address() was disabled in 2007 by
commit 5dc4fe09b7
.
* Remove check_perf() and run_test() of test_numbers.
2023-06-15 12:22:01 +00:00
Pablo Galindo Salgado
09ce8c3b48
gh-105821: Use a raw f-string in test_httpservers.py ( #105822 )
...
Use a raw f-string in test_httpservers.py
2023-06-15 10:48:01 +00:00
Victor Stinner
c5111aec2b
gh-105751: Remove platform usage in test_ctypes ( #105819 )
...
The MACHINE variable is no longer used in test_structures.
2023-06-15 09:44:54 +00:00