1. 21 Kas, 2018 5 kayıt (commit)
  2. 20 Kas, 2018 9 kayıt (commit)
  3. 19 Kas, 2018 1 kayıt (commit)
  4. 18 Kas, 2018 2 kayıt (commit)
  5. 17 Kas, 2018 3 kayıt (commit)
  6. 16 Kas, 2018 7 kayıt (commit)
  7. 15 Kas, 2018 4 kayıt (commit)
  8. 14 Kas, 2018 7 kayıt (commit)
  9. 13 Kas, 2018 2 kayıt (commit)
    • Victor Stinner's avatar
      bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) · 7ddd56f4
      Victor Stinner yazdı
      * Fix _PyCoreConfig_SetGlobalConfig(): set also Py_FrozenFlag
      * Fix _PyCoreConfig_AsDict(): export also xoptions
      * Add _Py_GetGlobalVariablesAsDict() and _testcapi.get_global_config()
      * test.pythoninfo: dump also global configuration variables
      * _testembed now serializes global, core and main configurations
        using JSON to reuse _Py_GetGlobalVariablesAsDict(),
        _PyCoreConfig_AsDict() and _PyMainInterpreterConfig_AsDict(),
        rather than duplicating code.
      * test_embed.InitConfigTests now test much more configuration
        variables
      7ddd56f4
    • Gregory P. Smith's avatar
      bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) · 746b2d35
      Gregory P. Smith yazdı
      Discovered using clang's MemorySanitizer when it ran python3's
      test_fstring test_misformed_unicode_character_name.
      
      An msan build will fail by simply executing: ./python -c 'u"\N"'
      746b2d35