1. 22 Ock, 2016 20 kayıt (commit)
  2. 21 Ock, 2016 16 kayıt (commit)
  3. 20 Ock, 2016 4 kayıt (commit)
    • Victor Stinner's avatar
      Merge 3.5 (issue #24520) · c3ea8d22
      Victor Stinner yazdı
      c3ea8d22
    • Victor Stinner's avatar
      Replace fpgetmask() with fedisableexcept() · 7172f507
      Victor Stinner yazdı
      Issue #24520: On FreeBSD, fpgetmask() was deprecated long time ago.
      fedisableexcept() is now preferred.
      7172f507
    • Victor Stinner's avatar
      co_lnotab supports negative line number delta · f3914eb1
      Victor Stinner yazdı
      Issue #26107: The format of the co_lnotab attribute of code objects changes to
      support negative line number delta.
      
      Changes:
      
      * assemble_lnotab(): if line number delta is less than -128 or greater than
        127, emit multiple (offset_delta, lineno_delta) in co_lnotab
      * update functions decoding co_lnotab to use signed 8-bit integers
      
        - dis.findlinestarts()
        - PyCode_Addr2Line()
        - _PyCode_CheckLineNumber()
        - frame_setlineno()
      
      * update lnotab_notes.txt
      * increase importlib MAGIC_NUMBER to 3361
      * document the change in What's New in Python 3.6
      * cleanup also PyCode_Optimize() to use better variable names
      f3914eb1
    • Senthil Kumaran's avatar
      merge from 3.5 · 316fcc86
      Senthil Kumaran yazdı
      issue25982 - Add a class definition for managers.Namespace in the multiprocessing docs.
      316fcc86