1. 05 Feb, 2019 1 commit
  2. 20 Jan, 2019 1 commit
  3. 09 Jan, 2019 1 commit
  4. 28 Dec, 2018 1 commit
  5. 20 Dec, 2018 1 commit
  6. 18 Dec, 2018 1 commit
  7. 17 Dec, 2018 1 commit
  8. 05 Dec, 2018 1 commit
  9. 05 Nov, 2018 1 commit
  10. 27 Oct, 2018 1 commit
  11. 23 Sep, 2018 2 commits
  12. 20 Sep, 2018 1 commit
  13. 11 Sep, 2018 1 commit
  14. 08 Sep, 2018 1 commit
  15. 07 Sep, 2018 2 commits
  16. 04 Sep, 2018 1 commit
  17. 26 Jul, 2018 1 commit
  18. 16 Jul, 2018 1 commit
  19. 18 Feb, 2018 1 commit
  20. 26 Jan, 2018 1 commit
  21. 18 Jan, 2018 1 commit
  22. 14 Dec, 2017 1 commit
  23. 05 Dec, 2017 1 commit
  24. 28 Nov, 2017 2 commits
    • Victor Stinner's avatar
      bpo-32155: Revert distutils.config change (#4618) · 3c144a62
      Victor Stinner authored
      Revert distutils changes of the commit
      696b501cd11dc429a0f661adeb598bfaf89e4112 and remove the realm
      variable.
      3c144a62
    • Victor Stinner's avatar
      bpo-32155: Bugfixes found by flake8 F841 warnings (#4608) · f7194b87
      Victor Stinner authored
      * distutils.config: Use the PyPIRCCommand.realm attribute if set
      * turtledemo: wait until macOS osascript command completes to not
        create a zombie process
      * Tools/scripts/treesync.py: declare 'default_answer' and
        'create_files' as globals to modify them with the command line
        arguments. Previously, -y, -n, -f and -a options had no effect.
      
      flake8 warning: "F841 local variable 'p' is assigned to but never
      used".
      f7194b87
  25. 23 Nov, 2017 1 commit
  26. 18 Nov, 2017 1 commit
  27. 08 Nov, 2017 1 commit
    • Victor Stinner's avatar
      Replace KB unit with KiB (#4293) · 50a9c568
      Victor Stinner authored
      kB (*kilo* byte) unit means 1000 bytes, whereas KiB ("kibibyte")
      means 1024 bytes. KB was misused: replace kB or KB with KiB when
      appropriate.
      
      Same change for MB and GB which become MiB and GiB.
      
      Change the output of Tools/iobench/iobench.py.
      
      Round also the size of the documentation from 5.5 MB to 5 MiB.
      50a9c568
  28. 26 Oct, 2017 1 commit
  29. 29 Sep, 2017 1 commit
  30. 25 Sep, 2017 1 commit
  31. 07 Sep, 2017 1 commit
  32. 06 Sep, 2017 2 commits
  33. 04 Sep, 2017 1 commit
  34. 18 May, 2017 1 commit
    • Jon Dufresne's avatar
      bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) · 252748ea
      Jon Dufresne authored
      * Replaced list(<generator expression>) with list comprehension
      * Replaced dict(<generator expression>) with dict comprehension
      * Replaced set(<list literal>) with set literal
      * Replaced builtin func(<list comprehension>) with func(<generator
        expression>) when supported (e.g. any(), all(), tuple(), min(), &
        max())
      252748ea
  35. 09 May, 2017 1 commit
  36. 04 May, 2017 1 commit
    • Victor Stinner's avatar
      bpo-30273: Update sysconfig (#1464) · 37a5021a
      Victor Stinner authored
      The AST_H_DIR variable was removed from Makefile.pre.in by the commit
      a5c62a8e9f0de6c4133825a5710984a3cd5e102b (bpo-23404).
      
      AST_H_DIR was hardcoded to "Include", so replace the removed variable
      by its content.
      
      Remove also ASDLGEN variable from sysconfig example since this
      variable was also removed.
      37a5021a