1. 09 Feb, 2001 1 commit
  2. 05 Feb, 2001 1 commit
  3. 31 Jan, 2001 1 commit
  4. 28 Jan, 2001 2 commits
  5. 26 Jan, 2001 1 commit
  6. 25 Jan, 2001 1 commit
  7. 24 Jan, 2001 2 commits
  8. 19 Jan, 2001 1 commit
    • Andrew M. Kuchling's avatar
      Patch #103220 from Jason Tishler: · dd5ccc00
      Andrew M. Kuchling authored
        This patch adds support for Cygwin to util.get_platform(). A Cygwin
        specific case is needed due to the format of Cygwin's uname command,
        which contains '/' characters.
      dd5ccc00
  9. 17 Jan, 2001 1 commit
    • Andrew M. Kuchling's avatar
      Patch #103279: sysconfig.py always looks for versions of files in · 6aef8efc
      Andrew M. Kuchling authored
      sys.prefix + 'config/Makefile'. When building Python for the first
      time, these files aren't there, so the files from the build tree have
      to be used instead; this file adds an entry point for specifying that
      the build tree files should be used.  (Perhaps 'set_python_build' should
      should be preceded with an underscore?)
      6aef8efc
  10. 16 Jan, 2001 3 commits
  11. 15 Jan, 2001 1 commit
  12. 11 Jan, 2001 1 commit
  13. 09 Jan, 2001 1 commit
  14. 20 Dec, 2000 1 commit
  15. 12 Dec, 2000 1 commit
  16. 11 Nov, 2000 1 commit
  17. 15 Oct, 2000 1 commit
  18. 14 Oct, 2000 5 commits
  19. 12 Oct, 2000 1 commit
  20. 03 Oct, 2000 4 commits
  21. 02 Oct, 2000 5 commits
  22. 01 Oct, 2000 2 commits
  23. 30 Sep, 2000 2 commits
    • Greg Ward's avatar
      Reduced the 'bytecompile()' method to a one-line wrapper around · c2c1bbc3
      Greg Ward authored
      'util.byte_compile()'.  Currently just reproduces the existing functionality
      -- doesn't use any of the fancy features in the new 'byte_compile()'.
      c2c1bbc3
    • Greg Ward's avatar
      Added 'byte_compile(): an all-singing, all-dancing wrapper around the · 016c9e35
      Greg Ward authored
      standard 'py_compile.compile()' function.  Laundry list of features:
        - handles standard Distutils 'force', 'verbose', 'dry_run' flags
        - handles various levels of optimization: can compile directly in
          this interpreter process, or write a temporary script that is
          then executed by a new interpreter with the appropriate flags
        - can rewrite the source filename by stripping an optional prefix
          and preprending an optional base dir.
      016c9e35