- 02 Agu, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79165 | florent.xicluna | 2010-03-21 03:14:24 +0200 (Sun, 21 Mar 2010) | 2 lines #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. ........
-
- 21 Mar, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 20 Şub, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 07 Şub, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 06 Şub, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 08 Ock, 2010 2 kayıt (commit)
-
-
Senthil Kumaran yazdı
mistake. ( It may come in for sure tough)
-
Senthil Kumaran yazdı
-
- 30 Haz, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 15 Tem, 2008 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful
-
- 19 Ara, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This changes the rules for when __hash__ is inherited slightly, by allowing it to be inherited when one or more of __lt__, __le__, __gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
-
- 24 Mar, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 24 Agu, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 28 Eki, 2003 1 kayıt (commit)
-
-
Armin Rigo yazdı
SF patch 825639 http://mail.python.org/pipermail/python-dev/2003-October/039445.html
-
- 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.
-
- 29 Nis, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
tests and comments.
-
- 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. :)
-
- 08 May, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
d1 == d2 and d1 != d2 now work even if the keys and values in d1 and d2 don't support comparisons other than ==, and testing dicts for equality is faster now (especially when inequality obtains).
-
- 19 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 18 Ock, 2001 4 kayıt (commit)
-
-
Guido van Rossum yazdı
for comparisons that outlaws requets for ordering on recursive data structures, remove the tests for ordering recursive data structures.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
these fall back to __cmp__.
-
Guido van Rossum yazdı
-