1. 27 Eyl, 2017 5 kayıt (commit)
  2. 26 Eyl, 2017 3 kayıt (commit)
  3. 25 Eyl, 2017 9 kayıt (commit)
  4. 24 Eyl, 2017 10 kayıt (commit)
  5. 23 Eyl, 2017 5 kayıt (commit)
  6. 22 Eyl, 2017 6 kayıt (commit)
    • Cheryl Sabella's avatar
      bpo-1612262: IDLE: Class Browser shows nested functions, classes (#2573) · 058de113
      Cheryl Sabella yazdı
      Original patches for code and tests by Guilherme Polo and
      Cheryl Sabella, respectively.
      058de113
    • Neil Schemenauer's avatar
      bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#3372) · 0a1ff24a
      Neil Schemenauer yazdı
      * Maintain a list of BufferedWriter objects.  Flush them on exit.
      
      In Python 3, the buffer and the underlying file object are separate
      and so the order in which objects are finalized matters.  This is
      unlike Python 2 where the file and buffer were a single object and
      finalization was done for both at the same time.  In Python 3, if
      the file is finalized and closed before the buffer then the data in
      the buffer is lost.
      
      This change adds a doubly linked list of open file buffers.  An atexit
      hook ensures they are flushed before proceeding with interpreter
      shutdown.  This is addition does not remove the need to properly close
      files as there are other reasons why buffered data could get lost during
      finalization.
      
      Initial patch by Armin Rigo.
      
      * Use weakref.WeakSet instead of WeakKeyDictionary.
      
      * Simplify buffered double-linked list types.
      
      * In _flush_all_writers(), suppress errors from flush().
      
      * Remove NEWS entry, use blurb.
      
      * Take more care when flushing file buffers from atexit.
      
      The previous implementation was not careful enough to avoid
      causing issues in multi-threaded cases.  Check for buf->ok
      and buf->finalizing before actually doing the flush.  Also,
      increase the refcnt to ensure the object does not disappear.
      0a1ff24a
    • François Magimel's avatar
      bpo-31423: Fix building the PDF documentation (GH-3693) · da9b4cfb
      François Magimel yazdı
      Use prefixed macro names for the `authoraddress` function, add T2A to the font encoding in LaTeX sources to support Cyrillic characters in the PDF documentation, and replace the deprecated `font_size` config option with `pointsize`.
      da9b4cfb
    • Barry Warsaw's avatar
      bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438) · 35425d63
      Barry Warsaw yazdı
      * Give pdb.set_trace() an optional `header` argument
      
      * What's new.
      
      * Give pdb.set_trace() an optional `header` argument
      
      * What's new.
      35425d63
    • Stefan Krah's avatar
      bpo-31443: Update included code. (#3697) · b1558a03
      Stefan Krah yazdı
      b1558a03
    • Stefan Krah's avatar
  7. 21 Eyl, 2017 2 kayıt (commit)