1. 11 May, 2004 1 kayıt (commit)
  2. 15 Şub, 2004 1 kayıt (commit)
  3. 12 Şub, 2004 1 kayıt (commit)
  4. 14 Kas, 2003 1 kayıt (commit)
  5. 18 Tem, 2003 1 kayıt (commit)
  6. 05 Mar, 2003 1 kayıt (commit)
  7. 27 Şub, 2003 1 kayıt (commit)
  8. 01 Şub, 2003 1 kayıt (commit)
  9. 29 Ock, 2003 1 kayıt (commit)
  10. 31 Ara, 2002 2 kayıt (commit)
    • Just van Rossum's avatar
      patch attached to sf item #643711: · e29310a2
      Just van Rossum yazdı
      any_missing() returns less bogus missing modules.
      
      - I've rewritten scan_code() more or less from scratch,
      factored bits and pieces out for readability.
      - keep track of global assignments and failed imports per
      module; use this to determine whether the Y in "from X
      import Y" is a submodule or just a global name. This is not
      100% doable: you can't tell which symbols are imported when
      doing a star import of a non-Python module short of actually
      importing it.
      - added a new method to ModuleFinder: any_missing_maybe(),
      which returns *two* lists, one with certain misses, one with
      possible misses. The possible misses are *very* often false
      alarms, so it's useful to keep this list separate.
      any_misses() now simply returns the union of
      any_missing_maybe().
      
      TODO: documentation, test_modulefinder.py
      e29310a2
    • Just van Rossum's avatar
      41c554fb
  11. 26 Kas, 2002 3 kayıt (commit)
  12. 25 Kas, 2002 1 kayıt (commit)
  13. 14 Kas, 2002 1 kayıt (commit)
  14. 12 Kas, 2002 2 kayıt (commit)
  15. 11 Eyl, 2002 1 kayıt (commit)
  16. 10 Haz, 2002 1 kayıt (commit)
  17. 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
  18. 05 Eyl, 2001 1 kayıt (commit)
  19. 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
  20. 06 Kas, 2000 1 kayıt (commit)
  21. 15 Eyl, 2000 1 kayıt (commit)
  22. 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
  23. 02 May, 2000 1 kayıt (commit)
  24. 02 Kas, 1999 1 kayıt (commit)
  25. 22 Ara, 1998 1 kayıt (commit)
  26. 15 Ara, 1998 1 kayıt (commit)
  27. 14 Eyl, 1998 1 kayıt (commit)
  28. 25 Agu, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      New version, with contributions from Sjoerd Mullender and Mark Hammond. · baf06034
      Guido van Rossum yazdı
      Sjoerd writes:
      
      This version of freeze creates one file per Python module, instead of
      one humongous file for all Python modules.
      bkfile: new module to used to write files with backups.  No new file
      is produced if the new contents is identical to the old.
      New option "-x excluded-module" for modulefinder test program.
      New option "-i filename" for freeze main program to include a list of
      options in place of the -i option.
      baf06034
  29. 18 May, 1998 1 kayıt (commit)
  30. 20 Mar, 1998 1 kayıt (commit)
  31. 06 Mar, 1998 1 kayıt (commit)
  32. 05 Mar, 1998 3 kayıt (commit)