1. 25 Kas, 2017 6 kayıt (commit)
  2. 24 Kas, 2017 12 kayıt (commit)
  3. 23 Kas, 2017 15 kayıt (commit)
  4. 22 Kas, 2017 3 kayıt (commit)
    • Victor Stinner's avatar
      bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504) · d4341109
      Victor Stinner yazdı
      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 yazdı
      * 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
  5. 21 Kas, 2017 4 kayıt (commit)