1. c9ed9e6 bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) by Miss Islington (bot) · 4 years, 10 months ago
  2. 96c8475 [3.8] bpo-38234: Backport init path config changes from master (GH-16423) by Victor Stinner · 4 years, 10 months ago
  3. af84a88 bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435) by Victor Stinner · 5 years ago
  4. a6427cb bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423) by Miss Islington (bot) · 5 years ago
  5. 746992c bpo-37363: Add audit events on startup for the run commands (GH-14524) by Miss Islington (bot) · 5 years ago
  6. 4c227e6 bpo-36763: Use PyConfig_Clear() (GH-14445) by Miss Islington (bot) · 5 years ago
  7. 466e18e Remove unused imports in tests (GH-14518) (GH-14520) by Victor Stinner · 5 years ago
  8. 323e743 bpo-37369: Fix initialization of sys members when launched via an app container (GH-14467) by Steve Dower · 5 years ago
  9. 69610f8 Fix test_embed.test_pre_initialization_sys_options() env vars (GH-14172) by Miss Islington (bot) · 5 years ago
  10. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 5 years ago
  11. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  12. 20e1e25 bpo-36763: Fix _PyPreConfig_InitCompatConfig() utf8_mode (GH-13518) by Victor Stinner · 5 years ago
  13. 5edcf26 bpo-36763: Rename private Python initialization functions (GH-13511) by Victor Stinner · 5 years ago
  14. 022be02 bpo-36763: Add _PyPreConfig._config_init (GH-13481) by Victor Stinner · 5 years ago
  15. 425717f bpo-36763: Fix encoding/locale tests in test_embed (GH-13443) by Victor Stinner · 5 years ago
  16. 6d1c467 bpo-36763: Fix Python preinitialization (GH-13432) by Victor Stinner · 5 years ago
  17. 410759f bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402) by Victor Stinner · 5 years ago
  18. bab0db6 bpo-36763: Use _PyCoreConfig_InitPythonConfig() (GH-13398) by Victor Stinner · 5 years ago
  19. bcfbbd7 bpo-36945: Add _PyPreConfig.configure_locale (GH-13368) by Victor Stinner · 5 years ago
  20. cab5d07 bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388) by Victor Stinner · 5 years ago
  21. b16b4e4 bpo-36763: Add PyMemAllocatorName (GH-13387) by Victor Stinner · 5 years ago
  22. fed02e1 bpo-36763: Remove _PyCoreConfig.program (GH-13373) by Victor Stinner · 5 years ago
  23. 54b43bb bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363) by Victor Stinner · 5 years ago
  24. 9ef5dca bpo-36763: Add _Py_InitializeMain() (GH-13362) by Victor Stinner · 5 years ago
  25. ae239f6 bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361) by Victor Stinner · 5 years ago
  26. 5eb8b07 bpo-36763: InitConfigTests tests all core config (GH-13331) by Victor Stinner · 5 years ago
  27. 91c9987 bpo-36763: Add test for _PyCoreConfig_SetString() (GH-13275) by Victor Stinner · 5 years ago
  28. 4631da1 bpo-36763: Remove _PyCoreConfig._init_main (GH-13066) by Victor Stinner · 5 years ago
  29. cb9fbd3 bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052) by Victor Stinner · 5 years ago
  30. 2f54908 bpo-36471: Add _Py_RunMain() (GH-12618) by Victor Stinner · 5 years ago
  31. d929f18 bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589) by Victor Stinner · 5 years ago
  32. 484f20d bpo-36444: Add _PyCoreConfig._init_main (GH-12572) by Victor Stinner · 5 years ago
  33. 8b9dbc0 bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) by Victor Stinner · 5 years ago
  34. 6da20a4 bpo-36301: Test Python init with isolated (GH-12569) by Victor Stinner · 5 years ago
  35. f8ba6f5 bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563) by Victor Stinner · 5 years ago
  36. 2000495 bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546) by Victor Stinner · 5 years ago
  37. 1075d16 bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540) by Victor Stinner · 5 years ago
  38. 6259976 bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347) by Victor Stinner · 5 years ago
  39. 25d13f3 bpo-36142: PYTHONMALLOC overrides PYTHONDEV (GH-12191) by Victor Stinner · 5 years ago
  40. c656e25 bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187) by Victor Stinner · 5 years ago
  41. a9df651 bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185) by Victor Stinner · 5 years ago
  42. b35be4b bpo-36142: Add _PyPreConfig.allocator (GH-12181) by Victor Stinner · 5 years ago
  43. 62be763 bpo-36142: Remove _PyMain structure (GH-12120) by Victor Stinner · 5 years ago
  44. f0b366a bpo-35313: Cleanup test_embed.py (GH-10716) by Victor Stinner · 6 years ago
  45. a6537fb bpo-35313: Fix test_embed when run from venv (GH-10713) by Victor Stinner · 6 years ago
  46. 37cd982 bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532) by Victor Stinner · 6 years ago
  47. 01de89c bpo-35233: InitConfigTests tests more config vars (GH-10541) by Victor Stinner · 6 years ago
  48. 7ddd56f bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) by Victor Stinner · 6 years ago
  49. 00b137c bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10519) by Victor Stinner · 6 years ago
  50. 06e7608 Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) by Victor Stinner · 6 years ago
  51. 7a0791b bpo-34589: C locale coercion off by default (GH-9073) by Victor Stinner · 6 years ago
  52. 188ebfa bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371) by Victor Stinner · 6 years ago
  53. d206731 bpo-34579: Fix test_embed DEFAULT_CON AIX (GH-9063) by Michael Felt · 6 years ago
  54. c5989cd bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998) by Victor Stinner · 6 years ago
  55. b2457ef bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) by Victor Stinner · 6 years ago
  56. dfe0dc7 bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881) by Victor Stinner · 6 years ago
  57. 9e4994d bpo-34485: Enhance init_sys_streams() (GH-8978) by Victor Stinner · 6 years ago
  58. ea68d83 bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595) by Victor Stinner · 6 years ago
  59. 9851227 bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594) by Victor Stinner · 6 years ago
  60. b75d7e2 bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) by Victor Stinner · 6 years ago
  61. 56b29b6 bpo-34170, test_embed: write Py_Initialize() tests (GH-8484) by Victor Stinner · 6 years ago
  62. fb47bca bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) by Victor Stinner · 6 years ago
  63. 209abf7 bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845) by Victor Stinner · 6 years ago
  64. 4114846 bpo-33358: Fix test_embed.test_pre_initialization_sys_options (GH-6612) by Pablo Galindo · 6 years ago
  65. bc77eff bpo-33042: Fix pre-initialization sys module configuration (GH-6157) by Nick Coghlan · 6 years ago
  66. d951157 bpo-20891: Reenable test_embed.test_bpo20891() (GH-5420) by Victor Stinner · 6 years ago
  67. 550ee05 bpo-20891: Skip test_embed.test_bpo20891() (#4967) by Victor Stinner · 7 years ago
  68. b4d1e1f bpo-20891: Fix PyGILState_Ensure() (#4650) by Victor Stinner · 7 years ago
  69. 39f0bb5 bpo-32136: Separate embedding tests from C API tests (GH-4567) by Nick Coghlan · 7 years ago