1. 31 Ara, 2002 1 kayıt (commit)
  2. 26 Kas, 2002 3 kayıt (commit)
  3. 25 Kas, 2002 1 kayıt (commit)
  4. 14 Kas, 2002 1 kayıt (commit)
  5. 12 Kas, 2002 2 kayıt (commit)
  6. 12 Eyl, 2002 1 kayıt (commit)
  7. 11 Eyl, 2002 1 kayıt (commit)
  8. 03 Tem, 2002 1 kayıt (commit)
  9. 28 Haz, 2002 1 kayıt (commit)
  10. 10 Haz, 2002 1 kayıt (commit)
  11. 04 Nis, 2002 1 kayıt (commit)
  12. 18 Eki, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Part 2/2 of SF patch #416704: More robust freeze, by Toby Dickenson. · 03f7f088
      Guido van Rossum yazdı
      (With slight cosmetic improvements to shorten lines and a grammar fix
      to a docstring.)
      
      This addes -X and -E options to freeze.  From the docstring:
      
      -X module     Like -x, except the module can never be imported by
                    the frozen binary.
      
      -E:           Freeze will fail if any modules can't be found (that
                    were not excluded using -x or -X).
      03f7f088
  13. 05 Eyl, 2001 1 kayıt (commit)
  14. 02 Haz, 2001 1 kayıt (commit)
  15. 21 Mar, 2001 1 kayıt (commit)
  16. 20 Mar, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Lawrence Hudson, SF #401702: Modify co_filename in frozen programs · 6b767ac8
      Guido van Rossum yazdı
        This patch was developed primarily to reduce the size of the
        frozen binary.  It is particularly useful when freezing for 'small'
        platforms, such as Palm OS, where you really want to save that
        last miserable byte.
      
        A limitation of this patch is that it does not provide any feedback
        about the replacements being made.  As the path matching
        is case-sensitive this may lead to unexpected behaviour for DOS
        and Windows people, eg
            > freeze.py -r C:\Python\Lib\=py\ goats.py
        should probably be:
            > freeze.py -r c:\python\lib\=py\ goats.py
      6b767ac8
  17. 18 Mar, 2001 1 kayıt (commit)
  18. 23 Şub, 2001 1 kayıt (commit)
  19. 24 Ock, 2001 1 kayıt (commit)
  20. 03 Ock, 2001 1 kayıt (commit)
  21. 06 Kas, 2000 1 kayıt (commit)
  22. 15 Eyl, 2000 1 kayıt (commit)
  23. 28 Tem, 2000 1 kayıt (commit)
  24. 24 Tem, 2000 1 kayıt (commit)
  25. 16 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either · 7e474022
      Thomas Wouters yazdı
      comments, docstrings or error messages. I fixed two minor things in
      test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").
      
      There is a minor style issue involved: Guido seems to have preferred English
      grammar (behaviour, honour) in a couple places. This patch changes that to
      American, which is the more prominent style in the source. I prefer English
      myself, so if English is preferred, I'd be happy to supply a patch myself ;)
      7e474022
  26. 13 Tem, 2000 1 kayıt (commit)
  27. 09 Tem, 2000 1 kayıt (commit)
  28. 06 May, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Toby Dickenson: · 4b1235cd
      Guido van Rossum yazdı
      Fix for problem with freeze when both "-m" and "-s service" options
      are used.
      
      (Blessed by MarkH)
      4b1235cd
  29. 02 May, 2000 1 kayıt (commit)
  30. 28 Nis, 2000 1 kayıt (commit)
  31. 23 Mar, 2000 1 kayıt (commit)
  32. 02 Kas, 1999 2 kayıt (commit)
  33. 30 Eyl, 1999 1 kayıt (commit)
  34. 23 Haz, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Simplified version of a patch by Chih-Hao Huang, who wrote: · ce769519
      Guido van Rossum yazdı
      """
      When there are additional Setup files, specified by -e option of freeze,
      checkextenstions.py assumes that *.o, *.a, -Lpath, and -Rpath are all
      relative to where the Setup file is. select() inserts the path to the
      Setup file to make them absolute. However, the assumption is not true.
      There are cases that absolute paths are specified for them. The inserted
      prefix, by select(), results in error.
      
      The following fix check for absolute paths. The assumption is: an
      absolute path begins with either '/' or '$'. In the latter case, it is
      from the environmental variable. (Variables defined locally in the Setup
      file have already been handled by expandvars())
      """
      
      My version of the patch has been verified by Charles Waldman (a
      colleague of Chih-Hao).
      ce769519
  35. 21 Haz, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch submitted by Toby Dickenson and approved by Mark Hammond. · 43128905
      Guido van Rossum yazdı
      Toby writes:
      
      winmakemakefile.py tries to allow for spaces in the python install
      path, by adding quotes around the appropriate filenames. It doesn't
      quite get this correct; sometimes the quotes end up in the middle of
      the path.
      
      Microsoft's NMAKE version 6.0 is happy with this (!!!!)  unless there
      is also a space in the name. I guess most users of freeze on windows
      do not use the same path as the binary distribution.
      
      I've tested the following changes on systems with and without a space
      in the path.
      43128905
  36. 12 Mar, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Bug submitted by Wayne Knowles, who writes: · 7039f508
      Guido van Rossum yazdı
         Under Windows, python freeze.py -o hello hello.py
         creates all the correct files in the hello subdirectory, but the
         Makefile has the directory prefix in it for frozen_extensions.c
         nmake fails because it tries to locate hello/frozen_extensions.c
      
      (His fix adds a call to os.path.basename() in the appropriate place.)
      7039f508