- 03 Agu, 2005 1 kayıt (commit)
-
-
Walter Dörwald yazdı
Unicode support.
-
- 08 Tem, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 20 Mar, 2004 1 kayıt (commit)
-
-
Brett Cannon yazdı
isinstance() or issubclass() to the recursion limit of the interpreter.
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 12 Ara, 2002 2 kayıt (commit)
-
-
Walter Dörwald yazdı
containing class objects) are allowed as the second argument. This makes issubclass() more similar to isinstance() where recursive tuples are allowed too.
-
Walter Dörwald yazdı
supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608.
-
- 23 Tem, 2002 1 kayıt (commit)
-
-
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. :)
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 24 Nis, 2002 1 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
- 23 Nis, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
build's "undetected error" problems were originally detected with extension types, but we can whitebox test the same situations with new-style classes.
-