1. 11 Eki, 2002 1 kayıt (commit)
  2. 12 Eyl, 2002 2 kayıt (commit)
  3. 18 Agu, 2002 1 kayıt (commit)
  4. 09 Agu, 2002 1 kayıt (commit)
  5. 11 Haz, 2002 1 kayıt (commit)
  6. 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
  7. 02 Haz, 2002 1 kayıt (commit)
  8. 01 Haz, 2002 1 kayıt (commit)
  9. 24 May, 2002 1 kayıt (commit)
  10. 15 Nis, 2002 1 kayıt (commit)
  11. 04 Nis, 2002 1 kayıt (commit)
  12. 02 Nis, 2002 1 kayıt (commit)
  13. 31 Mar, 2002 1 kayıt (commit)
  14. 26 Mar, 2002 1 kayıt (commit)
  15. 22 Mar, 2002 1 kayıt (commit)
  16. 18 Mar, 2002 1 kayıt (commit)
  17. 11 Şub, 2002 1 kayıt (commit)
  18. 08 Ara, 2001 1 kayıt (commit)
  19. 13 Eki, 2001 1 kayıt (commit)
  20. 27 Agu, 2001 1 kayıt (commit)
  21. 23 Agu, 2001 1 kayıt (commit)
  22. 11 Agu, 2001 1 kayıt (commit)
  23. 09 Agu, 2001 3 kayıt (commit)
  24. 04 Tem, 2001 1 kayıt (commit)
  25. 15 Nis, 2001 1 kayıt (commit)
  26. 09 Nis, 2001 1 kayıt (commit)
    • Moshe Zadka's avatar
      fixing 408085 - redirect from https becomes http · 5d87d472
      Moshe Zadka yazdı
      Even though relative redirects are illegal, they are common
      urllib treated every relative redirect as though it was to http,
      even if the original was https://
      As long as we're compensating for server bugs, might as well do
      it properly.
      5d87d472
  27. 13 Mar, 2001 1 kayıt (commit)
  28. 05 Mar, 2001 2 kayıt (commit)
  29. 02 Mar, 2001 1 kayıt (commit)
  30. 01 Mar, 2001 1 kayıt (commit)
  31. 28 Şub, 2001 1 kayıt (commit)
  32. 27 Şub, 2001 1 kayıt (commit)
  33. 15 Şub, 2001 1 kayıt (commit)
  34. 09 Şub, 2001 1 kayıt (commit)
  35. 28 Ock, 2001 1 kayıt (commit)
  36. 20 Ock, 2001 1 kayıt (commit)