1. 24 Nov, 2017 3 commits
  2. 23 Nov, 2017 15 commits
  3. 22 Nov, 2017 3 commits
    • Victor Stinner's avatar
      bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504) · d4341109
      Victor Stinner authored
      Changes:
      
      * Py_Main() initializes _PyCoreConfig.module_search_path_env from
        the PYTHONPATH environment variable.
      * PyInterpreterState_New() now initializes core_config and config
        fields
      * Compute sys.path a little bit ealier in
        _Py_InitializeMainInterpreter() and new_interpreter()
      * Add _Py_GetPathWithConfig() private function.
      d4341109
    • Victor Stinner's avatar
      bpo-27535: Optimize warnings.warn() (#4508) · 82656276
      Victor Stinner authored
      * Optimize warnings.filterwarnings(). Replace re.compile('') with
        None to avoid the cost of calling a regex.match() method, whereas
        it always matchs.
      * Optimize get_warnings_attr(): replace PyObject_GetAttrString() with
        _PyObject_GetAttrId().
      
      Cleanup also create_filter():
      
      * Use _Py_IDENTIFIER() to allow to cleanup strings at Python
        finalization
      * Replace Py_FatalError() with a regular exceptions
      82656276
    • Victor Stinner's avatar
  4. 21 Nov, 2017 7 commits
  5. 20 Nov, 2017 6 commits
  6. 19 Nov, 2017 3 commits
  7. 18 Nov, 2017 3 commits