1. 18 Şub, 2005 1 kayıt (commit)
  2. 17 Şub, 2005 3 kayıt (commit)
  3. 04 Agu, 2004 1 kayıt (commit)
    • Hye-Shik Chang's avatar
      SF #989185: Drop unicode.iswide() and unicode.width() and add · e9ddfbb4
      Hye-Shik Chang yazdı
      unicodedata.east_asian_width().  You can still implement your own
      simple width() function using it like this:
          def width(u):
              w = 0
              for c in unicodedata.normalize('NFC', u):
                  cwidth = unicodedata.east_asian_width(c)
                  if cwidth in ('W', 'F'): w += 2
                  else: w += 1
              return w
      e9ddfbb4
  4. 04 Haz, 2004 1 kayıt (commit)
  5. 01 May, 2003 1 kayıt (commit)
  6. 21 Şub, 2003 1 kayıt (commit)
  7. 09 Agu, 2002 1 kayıt (commit)
  8. 06 Agu, 2002 1 kayıt (commit)
  9. 23 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Get rid of relative imports in all unittests. Now anything that · 04f357cf
      Barry Warsaw yazdı
      imports e.g. test_support must do so using an absolute package name
      such as "import test.test_support" or "from test import test_support".
      
      This also updates the README in Lib/test, and gets rid of the
      duplicate data dirctory in Lib/test/data (replaced by
      Lib/email/test/data).
      
      Now Tim and Jack can have at it. :)
      04f357cf
  10. 12 Nis, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      I am mad. This test never worked! · d854f3b3
      Guido van Rossum yazdı
      The test function's signature should be
      
          test(methodname, input, output, *args)
      
      but the output argument was omitted.  This caused all tests to fail,
      because the expected output was passed as the initial argument to the
      method call.  But because of the way the test works (it compares the
      results for a regular string to the results for a UserString instance
      with the same value, and it's OK if both raise the same exception) the
      test never failed!
      
      I've fixed this, and also cleaned up a few warts in the verbose
      output.  Finally, I've made it possible to run the test stand-alone in
      verbose mode by passing -v as a command line argument.
      
      Now, the test will report failure related to zfill.  That's not my
      fault, that's a legitimate problem: the string_tests.py file contains
      a test for the zfill() method (just added) but this method is not
      implemented.  The responsible party will surely fix this soon now.
      d854f3b3
  11. 09 Şub, 2001 1 kayıt (commit)
  12. 17 Ock, 2001 2 kayıt (commit)
  13. 10 Tem, 2000 1 kayıt (commit)
  14. 03 Nis, 2000 1 kayıt (commit)