- 02 Ock, 2003 10 kayıt (commit)
-
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Fred Drake yazdı
- minor markup changes - indented for consistency with newer content
-
Fred Drake yazdı
-
Tim Peters yazdı
correct by your lights, it means that-- barring coding errors --it implements what it intended to implement.
-
Anthony Baxter yazdı
robust. This makes socketserver's close() method callable repeatedly without error - similar to other file-like objects.
-
Guido van Rossum yazdı
-
- 01 Ock, 2003 17 kayıt (commit)
-
-
Tim Peters yazdı
suggestion from Guido, along with a formal correctness proof of the trickiest bit. The intricacy of the proof reveals how delicate this is, but also how robust the conclusion: correctness doesn't rely on dst() returning +- one hour (not all real time zones do!), it only relies on: 1. That dst() returns a (any) non-zero value if and only if daylight time is in effect. and 2. That the tzinfo subclass implements a consistent notion of time zone. The meaning of "consistent" was a hidden assumption, which is now an explicit requirement in the docs. Alas, it's an unverifiable (by the datetime implementation) requirement, but so it goes.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
compiler flags which are necessary to get a clean compile. The former is for user-specified optimizer, debug, trace fiddling. See patch 640843. Add /sw/lib and /sw/include to setup.py search paths on Darwin to take advantage of fink goodies. Add scriptsinstall target to Makefile to install certain scripts from Tools/scripts directory.
-
Neal Norwitz yazdı
functions are here. Suggested by Skip.
-
Neal Norwitz yazdı
to 'properly configure the slave terminal' See SF patch # 656590 for the details.
-
Guido van Rossum yazdı
extension. Could use some work, but already very useful.
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
apply to the trunk.
-
Tim Peters yazdı
find a more elegant algorithm (OTOH, the hairy new implementation allows user-written tzinfo classes to be elegant, so it's a big win even if astimezone() remains hairy). Darn! I've only got 10 minutes left to get falling-down drunk! I suppose I'll have to smoke crack instead now.
-
Tim Peters yazdı
understood now: it can't work. Added comments explaining why (it's "the usual"-- unrepresentable hours in local time --but in a slightly different guise).
-
Tim Peters yazdı
I leave to Fred to sort out.
-
Kurt B. Kaiser yazdı
-
Kurt B. Kaiser yazdı
from its source directory. Generalize the "workaround" (though the latter seems a reasonable solution?) to handle this.
-
- 31 Ara, 2002 13 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
Neal Norwitz yazdı
-
Jason Tishler yazdı
The attached patch enables Cygwin Python to build cleanly against the latest Cygwin Tcl/Tk which is based on Tcl/Tk 8.3. It also prevents building against the real X headers, if installed.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
Plug the leak that Tim just reported.
-
Barry Warsaw yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
- more style consistency crud
-
Jeremy Hylton yazdı
Remove broken code in visitDict(). I assume the code was trying to add set lineno events for each line of a dict constructor, but I think it was using the wrong object (node instead of k or v).
-
Tony Lownds yazdı
-
Barry Warsaw yazdı
BerkeleyDB version dependent.
-
Neal Norwitz yazdı
-
Jeremy Hylton yazdı
A variety of changes from Michael Hudson to get the compiler working with 2.3. The primary change is the handling of SET_LINENO: # The set_lineno() function and the explicit emit() calls for # SET_LINENO below are only used to generate the line number table. # As of Python 2.3, the interpreter does not have a SET_LINENO # instruction. pyassem treats SET_LINENO opcodes as a special case. A few other small changes: - Remove unused code from pycodegen and pyassem. - Fix error handling in parsermodule. When PyParser_SimplerParseString() fails, it sets an exception with detailed info. The parsermodule was clobbering that exception and replacing it was a generic "could not parse string" exception. Keep the original exception.
-