- 29 Agu, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 28 Agu, 2006 4 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Guido van Rossum yazdı
-
- 27 Agu, 2006 1 kayıt (commit)
-
-
Brett Cannon yazdı
Closes patch #1500623. Thanks, Collin Winter.
-
- 26 Agu, 2006 3 kayıt (commit)
-
-
Guido van Rossum yazdı
functools, and adjust docs etc.
-
Guido van Rossum yazdı
traceback.py be closer to the built-in formatting. A few unittests had to be fixed, too.
-
Guido van Rossum yazdı
-
- 25 Agu, 2006 18 kayıt (commit)
-
-
Guido van Rossum yazdı
Don't use our own temp name creation (dbm). Should be backported to 2.5.
-
Guido van Rossum yazdı
Create a real zip iterator object; not using itertools.izip (Brian Holmes).
-
Brett Cannon yazdı
import MAGIC number.
-
Brett Cannon yazdı
``python -m compileall -f`` is really handy for finding Python files that use invalid syntax.
-
Brett Cannon yazdı
Still need to remove traces of the UNARY_CONVERT opcode.
-
Brett Cannon yazdı
optimization for it.
-
Brett Cannon yazdı
SyntaxError. This is probably not the proper solution to this failing test, but removing the test itself causes 19 other tests to fail for some odd reason because doctest doesn't expect a complete traceback (or something; rather odd problem for just removing a single test).
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
auto-generates this file will need to get fixed.
-
Brett Cannon yazdı
'<>'.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
- 24 Agu, 2006 13 kayıt (commit)
-
-
Brett Cannon yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
use __eq__ instead of __cmp__. The other change is unexplained: with a random hash code as before, it would run forever; with a constant hash code, it fails quickly. This found a refcount bug in dict_equal() -- I wonder if that bug is also present in 2.5...
-
Guido van Rossum yazdı
I mea, *really* equal -- for now, the implementation just imports itertools. :-) The only other changes necessary were various unit tests that were assuming zip() returns a real list. No "real" code made this assumption.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
This essentially meant fixing one case where a list of custom objects was being sorted, and fixing one genuine bug where a method call was missing parentheses.
-
Guido van Rossum yazdı
The special-casing of other objects with a timetuple attribute is gone. Let's hope Tim agrees.
-
Guido van Rossum yazdı
This makes test_codeop and test_marshal pass.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Opportunistically also fixed one or two places where '<> None' should be 'is not None' and where 'type(x) <> y' should be 'not isinstance(x, y)'.
-
Alex Martelli yazdı
in the stdlib and changed each of them to use "open" instead. At this time there are no other known occurrences that can be safely changed (in Lib and all subdirectories thereof).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-