summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_embed.py
Commit message (Expand)AuthorAgeFilesLines
* gh-126925: Modify how iOS test results are gathered (#127592)Russell Keith-Magee2024-12-091-0/+2
* GH-126985: move pyvenv.cfg detection from site to getpath (#126987)Filipe Laíns 🇵🇸2024-11-261-2/+2
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-0/+1
* gh-126255: Ignore warning about JIT being deactivated when perf support is ac...mpage2024-11-011-1/+4
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-0/+3
* bpo-34206: Improve docs and test coverage for pre-init functions (#8023)Alyssa Coghlan2024-10-081-1/+10
* gh-107954: Fix configuration type for the perf profiler (#124636)Pablo Galindo Salgado2024-09-271-5/+8
* gh-108303: Remove the non-test `Lib/test/reperf.py` (GH-114356)sobolevn2024-09-131-4/+7
* gh-117482: Simplify the Fix For Builtin Types Slot Wrappers (GH-122865)Eric Snow2024-09-091-1/+0
* gh-107954, PEP 741: Add PyInitConfig_AddModule() function (#123668)Victor Stinner2024-09-041-0/+3
* gh-107954, PEP 741: Adjust Python initialization config (#123663)Victor Stinner2024-09-041-1/+0
* gh-107954, PEP 741: Add PyInitConfig C API (#123502)Victor Stinner2024-09-031-10/+36
* gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)Victor Stinner2024-09-021-50/+54
* gh-123022: Fix crash with `Py_Initialize` in background thread (#123052)Sam Gross2024-08-171-1/+8
* gh-117482: Make the Slot Wrapper Inheritance Tests Much More Thorough (gh-122...Eric Snow2024-08-121-24/+33
* gh-122334: Fix test_embed failure when missing _ssl module (GH-122630)neonene2024-08-031-2/+6
* gh-122334: Fix crash when importing ssl after re-initialization (#122481)neonene2024-08-021-0/+19
* gh-117482: Fix the Slot Wrapper Inheritance Tests (gh-122248)Eric Snow2024-07-291-19/+38
* gh-117482: Expand Tests for Slot Wrappers of Inherited Slots of Static Builti...Eric Snow2024-07-231-0/+27
* gh-121103: Put free-threaded libraries in `lib/python3.14t` (#121293)Sam Gross2024-07-111-6/+8
* gh-71587: Drop local reference cache to `_strptime` module in `_datetime` (gh...neonene2024-06-121-0/+9
* gh-117786: Fix venv created from Windows Store install by restoring __PYVENV_...Steve Dower2024-04-241-0/+3
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-1/+11
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-111-0/+2
* gh-107954: Add PyConfig_MEMBER_BOOL type to PyConfigSpec (#116359)Victor Stinner2024-03-061-114/+114
* gh-112532: Require mimalloc in `--disable-gil` builds (gh-112883)Sam Gross2023-12-121-4/+10
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Łukasz Langa2023-10-141-0/+18
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-0/+2
* Add support.MS_WINDOWS constant (#110446)Victor Stinner2023-10-061-5/+2
* gh-85283: Add PySys_AuditTuple() function (#108965)Victor Stinner2023-10-051-0/+3
* gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994)Eric Snow2023-10-021-0/+3
* gh-107954: Refactor initconfig.c: add CONFIG_SPEC (#110146)Victor Stinner2023-09-301-0/+1
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-0/+9
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-161-1/+1
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-051-0/+1
* GH-103805: Lib test f541 linting issue fix (#103812)Rodolfo M. Pereira2023-04-241-1/+1
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-241-1/+2
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-161-1/+3
* gh-100712: make it possible to disable specialization (for debugging) (#100713)Irit Katriel2023-01-191-0/+2
* gh-100320: Fix path calculations on Windows when python.exe is moved outside ...Steve Dower2023-01-161-7/+9
* GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)Brandt Bucher2022-11-091-4/+0
* gh-98790: When DLLs directory is missing on Windows, assume executable_dir co...Steve Dower2022-11-021-13/+7
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-19/+27
* gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)Eric Snow2022-10-311-2/+3
* gh-96853: Restore test coverage for Py_Initialize(Ex) (GH-98212)Nick Coghlan2022-10-301-0/+6
* gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...Eric Snow2022-10-261-3/+19
* gh-96512: Move int_max_str_digits setting to PyConfig (#96944)Gregory P. Smith2022-10-031-0/+4
* GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97003)Brandt Bucher2022-09-221-0/+3
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-301-0/+5
* bpo-45445: Revert "bpo-45445: Fail if an invalid X-option is provided in the ...Pablo Galindo Salgado2022-07-311-12/+11