- 13 Nis, 2015 1 kayıt (commit)
-
-
Zachary Ware yazdı
I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
-
- 27 Ock, 2013 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 20 Kas, 2010 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
R. David Murray yazdı
Patch and tests by Brian Harring, with improvements by Ralf Schmitt.
-
- 20 May, 2008 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 16 Eki, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I like this because it makes the code shorter! :-)
-
- 07 Haz, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55797 | neal.norwitz | 2007-06-07 00:00:57 -0700 (Thu, 07 Jun 2007) | 3 lines Get rid of some remnants of classic classes. types.ClassType == type. Also get rid of almost all uses of the types module and use the builtin name. ........ r55798 | neal.norwitz | 2007-06-07 00:12:36 -0700 (Thu, 07 Jun 2007) | 1 line Remove a use of types, verify commit hook works ........ r55809 | guido.van.rossum | 2007-06-07 11:11:29 -0700 (Thu, 07 Jun 2007) | 2 lines Fix syntax error introduced by Neal in last checkin. ........
-
- 22 May, 2007 1 kayıt (commit)
-
-
Walter Dörwald yazdı
normal code (or drop them if they only repeat previous tests).
-
- 07 May, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55077 | guido.van.rossum | 2007-05-02 11:54:37 -0700 (Wed, 02 May 2007) | 2 lines Use the new print syntax, at least. ........ r55142 | fred.drake | 2007-05-04 21:27:30 -0700 (Fri, 04 May 2007) | 1 line remove old cruftiness ........ r55143 | fred.drake | 2007-05-04 21:52:16 -0700 (Fri, 04 May 2007) | 1 line make this work with the new Python ........ r55162 | neal.norwitz | 2007-05-06 22:29:18 -0700 (Sun, 06 May 2007) | 1 line Get asdl code gen working with Python 2.3. Should continue to work with 3.0 ........ r55164 | neal.norwitz | 2007-05-07 00:00:38 -0700 (Mon, 07 May 2007) | 1 line Verify checkins to p3yk (sic) branch go to 3000 list. ........ r55166 | neal.norwitz | 2007-05-07 00:12:35 -0700 (Mon, 07 May 2007) | 1 line Fix this test so it runs again by importing warnings_test properly. ........ r55167 | neal.norwitz | 2007-05-07 01:03:22 -0700 (Mon, 07 May 2007) | 8 lines So long xrange. range() now supports values that are outside -sys.maxint to sys.maxint. floats raise a TypeError. This has been sitting for a long time. It probably has some problems and needs cleanup. Objects/rangeobject.c now uses 4-space indents since it is almost completely new. ........ r55171 | guido.van.rossum | 2007-05-07 10:21:26 -0700 (Mon, 07 May 2007) | 4 lines Fix two tests that were previously depending on significant spaces at the end of a line (and before that on Python 2.x print behavior that has no exact equivalent in 3.0). ........
-
- 02 May, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Nis, 2007 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 15 Ock, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(Rough first cut.)
-
- 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.
-