1. 02 Jun, 2017 4 commits
  2. 01 Jun, 2017 7 commits
  3. 31 May, 2017 2 commits
    • Hiro Asari's avatar
      a5aa72ac
    • Albert-Jan Nijburg's avatar
      bpo-25324: copy tok_name before changing it (#1608) · fc354f07
      Albert-Jan Nijburg authored
      * add test to check if were modifying token
      
      * copy list so import tokenize doesnt have side effects on token
      
      * shorten line
      
      * add tokenize tokens to token.h to get them to show up in token
      
      * move ERRORTOKEN back to its previous location, and fix nitpick
      
      * copy comments from token.h automatically
      
      * fix whitespace and make more pythonic
      
      * change to fix comments from @haypo
      
      * update token.rst and Misc/NEWS
      
      * change wording
      
      * some more wording changes
      fc354f07
  4. 30 May, 2017 4 commits
  5. 29 May, 2017 5 commits
  6. 28 May, 2017 5 commits
  7. 27 May, 2017 9 commits
  8. 26 May, 2017 2 commits
    • Aaron Hall, MBA's avatar
      bpo-30449 Terse slots (#1819) · 2b44e302
      Aaron Hall, MBA authored
      * correct __slots__ documentation with minimal changes
      
      * add multiple inheritance info
      
      * remove mapping from description
      2b44e302
    • Alex Gaynor's avatar
      bpo-30420: List cwd parameter in subprocess convenience APIs (GH-1685) · 368cf1d2
      Alex Gaynor authored
      Partially clarify the subprocess convenience API documentation by
      explicitly listing the `cwd` parameter in their abbreviated signatures.
      
      While this has been merged as an improvement, it doesn't fully
      resolve the issue, as the `cwd` should also be covered in the
      "Frequently Used Arguments" section, and the fact these APIs
      pass unlisted keyword arguments down to the lower level APIs
      is currently still unclear.
      368cf1d2
  9. 25 May, 2017 2 commits
    • Eric Snow's avatar
      Drop a duplicate line. (#1809) · 18c1356f
      Eric Snow authored
      18c1356f
    • grzgrzgrz3's avatar
      bpo-30414: multiprocessing.Queue._feed do not break from main loop on exc (#1683) · bc50f03d
      grzgrzgrz3 authored
      * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc
      
      Queue background running thread was not handling exceptions correctly.
      Any exception occurred inside thread (putting unpickable object) cause
      feeder to finish running. After that every message put into queue is
      silently ignored.
      
      * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc
      
      Queue background running thread was not handling exceptions correctly.
      Any exception occurred inside thread (putting unpickable object) cause
      feeder to finish running. After that every message put into queue is
      silently ignored.
      bc50f03d