summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_embed.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* GH-89858: Fix test_embed for out-of-tree builds (GH-93465)Kumar Aditya2022-06-171-5/+4
* gh-89745: Avoid exact match when comparing program_name in test_embed on Wind...neonene2022-06-171-10/+7
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...neonene2022-06-161-0/+60
* gh-69443: Add test.support.Py_DEBUG constant (#93226)Victor Stinner2022-05-251-6/+5
* gh-92031, test_embed: Improve test for unquickening static code (#92440)Dennis Sweeney2022-05-111-10/+30
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-051-2/+11
* GH-91173: disable frozen modules in debug builds (#92023)Kumar Aditya2022-05-031-5/+5
* gh-92031: Deoptimize Static Code at Finalization (GH-92039)Dennis Sweeney2022-05-031-0/+14
* bpo-47103: Copy pgort140.dll into output directory when building PGInstrument...Steve Dower2022-04-061-14/+5
* bpo-47182: Fix crash by named unicode characters after interpreter reinitiali...Christian Heimes2022-03-311-0/+5
* bpo-47084: Clear Unicode cached representations on finalization (GH-32032)Jeremy Kloth2022-03-221-18/+23
* bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)Victor Stinner2022-02-261-6/+2
* bpo-46857: Fix test_embed.test_no_memleak() on Windows (GH-31589)Victor Stinner2022-02-251-4/+10
* bpo-1635741: test_embed cheks that Python does not leak (GH-31555)Victor Stinner2022-02-241-0/+21
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+2
* bpo-46417: _testembed.c avoids Py_SetProgramName() (GH-30732)Victor Stinner2022-01-211-1/+1
* bpo-46417: Finalize structseq types at exit (GH-30645)Victor Stinner2022-01-211-0/+12
* bpo-46362: Ensure abspath() tests pass through environment variables to subpr...neonene2022-01-141-1/+2
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-0/+27
* bpo-46263: Do not ever expect "use_frozen_modules" to be -1. (gh-30438)Eric Snow2022-01-061-2/+0
* bpo-45582: Fix test_embed failure during a PGO build on Windows (GH-30014)neonene2021-12-101-3/+8
* bpo-46015: Fixes calculation of sys.path in a venv on Windows (GH-29992)Steve Dower2021-12-081-0/+2
* bpo-45582: Fix getpath_isxfile() and test_embed on Windows (GH-29930)neonene2021-12-061-2/+10
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-80/+80
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-4/+4
* bpo-45653: fix test_embed on windows (GH-29814)Kumar Aditya2021-11-291-1/+1