1. 18 May, 2004 3 kayıt (commit)
    • Fred Drake's avatar
      ConfigParser: · 82903148
      Fred Drake yazdı
      - read() method returns a list of files parsed successfully
      - add tests, documentation
      (closes SF patch #677651)
      82903148
    • Fred Drake's avatar
      ConfigParser: · abc086fb
      Fred Drake yazdı
      - don't allow setting options to non-string values; raise TypeError
        when the value is set, instead of raising an arbitrary exception
        later (such as when string interpolation is performed)
      - add tests, documentation
      (closes SF bug #810843)
      abc086fb
    • Fred Drake's avatar
      ConfigParser: · bc12b01d
      Fred Drake yazdı
      - ensure that option names in interpolations are handled by
        self.optionxform in the same way that other references to option
        names
      - add tests, documentation
      (closes SF bug #857881, patch #865455)
      bc12b01d
  2. 04 May, 2004 1 kayıt (commit)
  3. 12 Şub, 2004 1 kayıt (commit)
  4. 21 Eki, 2003 1 kayıt (commit)
  5. 20 Eki, 2003 1 kayıt (commit)
  6. 01 Eyl, 2003 1 kayıt (commit)
  7. 29 Haz, 2003 1 kayıt (commit)
  8. 31 Ara, 2002 2 kayıt (commit)
  9. 30 Ara, 2002 2 kayıt (commit)
  10. 17 Ara, 2002 1 kayıt (commit)
  11. 09 Kas, 2002 1 kayıt (commit)
  12. 06 Kas, 2002 1 kayıt (commit)
  13. 25 Eki, 2002 3 kayıt (commit)
  14. 27 Eyl, 2002 3 kayıt (commit)
  15. 03 Haz, 2002 1 kayıt (commit)
    • Walter Dörwald's avatar
      Remove uses of the string and types modules: · 65230a2d
      Walter Dörwald yazdı
      x in string.whitespace => x.isspace()
      type(x) in types.StringTypes => isinstance(x, basestring)
      isinstance(x, types.StringTypes) => isinstance(x, basestring)
      type(x) is types.StringType => isinstance(x, str)
      type(x) == types.StringType => isinstance(x, str)
      string.split(x, ...) => x.split(...)
      string.join(x, y) => y.join(x)
      string.zfill(x, ...) => x.zfill(...)
      string.count(x, ...) => x.count(...)
      hasattr(types, "UnicodeType") => try: unicode except NameError:
      type(x) != types.TupleTuple => not isinstance(x, tuple)
      isinstance(x, types.TupleType) => isinstance(x, tuple)
      type(x) is types.IntType => isinstance(x, int)
      
      Do not mention the string module in the rlcompleter docstring.
      
      This partially applies SF patch http://www.python.org/sf/562373
      (with basestring instead of string). (It excludes the changes to
      unittest.py and does not change the os.stat stuff.)
      65230a2d
  16. 01 Haz, 2002 2 kayıt (commit)
  17. 26 Nis, 2002 1 kayıt (commit)
  18. 04 Nis, 2002 1 kayıt (commit)
  19. 08 Mar, 2002 1 kayıt (commit)
  20. 18 Eki, 2001 1 kayıt (commit)
  21. 04 Eki, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Apply modified SF patch 467580: ConfigParser.getboolean(): FALSE, TRUE. · fb06f75c
      Guido van Rossum yazdı
          This patch allows ConfigParser.getboolean() to interpret TRUE,
          FALSE, YES, NO, ON and OFF instead just '0' and '1'.
      
          While just allowing '0' and '1' sounds more correct users often
          demand to use more descriptive directives in configuration
          files. Instead of forcing every programmer do brew his own
          solution a system should include the batteries for this.
      
      [My modification to the patch is a slight rewording of the docstring
      and use of lowercase instead of uppercase templates.  The code is
      still case sensitive. GvR.]
      fb06f75c
  22. 17 Agu, 2001 1 kayıt (commit)
    • Martin v. Löwis's avatar
      Patch #445762: Support --disable-unicode · 339d0f72
      Martin v. Löwis yazdı
      - Do not compile unicodeobject, unicodectype, and unicodedata if Unicode is disabled
      - check for Py_USING_UNICODE in all places that use Unicode functions
      - disables unicode literals, and the builtin functions
      - add the types.StringTypes list
      - remove Unicode literals from most tests.
      339d0f72
  23. 13 Agu, 2001 1 kayıt (commit)
  24. 02 Agu, 2001 1 kayıt (commit)
  25. 06 Tem, 2001 1 kayıt (commit)
  26. 26 Şub, 2001 1 kayıt (commit)
  27. 14 Şub, 2001 1 kayıt (commit)
  28. 12 Şub, 2001 1 kayıt (commit)
  29. 09 Şub, 2001 2 kayıt (commit)
  30. 20 Ock, 2001 1 kayıt (commit)
    • Skip Montanaro's avatar
      added __all__ lists to a number of Python modules · e99d5ea2
      Skip Montanaro yazdı
      added test script and expected output file as well
      this closes patch 103297.
      __all__ attributes will be added to other modules without first submitting
      a patch, just adding the necessary line to the test script to verify
      more-or-less correct implementation.
      e99d5ea2