- 04 Ock, 2003 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
Refactor code in PyCFunction_Call giving a modest (tiny) speed boost, a slight improvement in semantics (now detects invalid flag combinations), and (arguably) improved clarity (making it blindingly clear which flag combinations are allowed). All this comes at a cost of a few lines of code duplication. * Folded test for METH_KEYWORDS into the switch/case. * Deferred testing for an empty dictionary until when and where needed. * Make a similar deferral for filling the "size" variable. * Inverted the dictionary test so that the common case falls though instead of making a jump.
-
Martin v. Löwis yazdı
macro definitions for older Python releases.
-
Tim Peters yazdı
the desired compromise behavior during the "problem hour" when DST ends cheaply (but I haven't yet implemented that).
-
Martin v. Löwis yazdı
Provide .string attribute and __unicode for Tcl_Objs.
-
- 03 Ock, 2003 27 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
of Guido's later Local.py (from the datetime sandbox).
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Walter Dörwald yazdı
is done afterwards anyway, so what the list comp does can be done in the loop.
-
Walter Dörwald yazdı
file content ends up in the correct dict.
-
Martin v. Löwis yazdı
-
Walter Dörwald yazdı
This fixes a bug reported as http://www.python.org/sf/661630, which was introduced in the patch http://www.python.org/sf/554192.
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Neal Norwitz yazdı
Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
-
Andrew M. Kuchling yazdı
Mention difference between 2.2.2 and 2.3 True and False
-
Guido van Rossum yazdı
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
Add two sections to this manual about package meta-data and about registering packages
-
Andrew M. Kuchling yazdı
Add the 'register' distutils command
-
Andrew M. Kuchling yazdı
Add 'classifiers' keyword to DistributionMetadata
-
Just van Rossum yazdı
Lesson learned: kids should not be allowed to use API's starting with an underscore :-/ zipimport in 2.3a1 is even more broken than I thought: I attemped to _PyString_Resize a string created by PyString_FromStringAndSize, which fails for strings with length 0 or 1 since the latter returns an interned string in those cases. This would cause a SystemError with empty source files (and no matching pyc) in the zip archive. I rewrote the offending code to simply allocate a new buffer and avoid _PyString_Resize altogether. Added a test that would've caught the problem.
-
Raymond Hettinger yazdı
-
Michael W. Hudson yazdı
-
Raymond Hettinger yazdı
Simplify code and speed access by using PyArg_UnpackTuple, METH_O and METH_NOARGS in three modules that can benefit from it.
-
David Goodger yazdı
-
David Goodger yazdı
-
- 02 Ock, 2003 9 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Barry Warsaw yazdı
because the test file, msg_26.txt which has \r\n line endings, was getting munged by cvs, which knows to do line ending conversions for text files. But we want \r\n to be preserved on all platforms, so we cvs admin'd the file to be -kb (binary), which means we have to open the file in binary mode to preserve these line ends. Hopefully this will be the end of the thrashing on this issue (but probably not). Test passes on *nix now, and Tim confirms it passes on Windows. We'll leave it to Jack to test MacOS.
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
(or None) now. In 2.3a1 they could also return an int or long, but that was an unhelpfully redundant leftover from an earlier version wherein they couldn't return a timedelta. TOOWTDI.
-
Skip Montanaro yazdı
661092.
-
Kurt B. Kaiser yazdı
2. Add more .txt files to installation 3. Fix the reference to Visual Python, s/b VPython
-
Tim Peters yazdı
dst() returns None (instead of treating that as 0).
-
Tim Peters yazdı
be an unbounded number of API changes <0.6 wink>.
-
Tim Peters yazdı
turned out to be 3 special cases of a single more-general result. Proving the latter instead is a real simplification.
-