- 25 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
in comments and doc strings.
-
- 24 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 Haz, 1998 3 kayıt (commit)
-
-
Guido van Rossum yazdı
possible to use this in PythonWin, and to replace Fredrik Lundh's PythonInterpreter class. Fredrik is credited with the class' API.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
MultiFile constructor, and only do the posstack bookkeeping when it is true.
-
- 22 Haz, 1998 9 kayıt (commit)
-
-
Fred Drake yazdı
to pypaper.sty. Added the use of the "avant" package to use AvantGarde for the sans-serif font instead of the helvetica font loaded by the "times" package.
-
Fred Drake yazdı
like any other header.
-
Fred Drake yazdı
.dvi files are properly dependent on it.
-
Guido van Rossum yazdı
for presence unread, not getattr()!
-
Andrew M. Kuchling yazdı
^ and the pos argument to re.match(). Also, fixed a typo in libregex.tex.
-
Guido van Rossum yazdı
doesn't work on modern Windows systems, and Control-Z works everywhere.
-
Guido van Rossum yazdı
goal to use isinstance(x, y) instead of comparing type(x) to y, it doesn't make sense to change this in the example code for the type() builtin...
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
conversions. Formerly, for example, int('-') would return 0 instead of raising ValueError, and int(' 0') would raise ValueError (complaining about a null byte!) instead of 0...
-
- 19 Haz, 1998 10 kayıt (commit)
-
-
Guido van Rossum yazdı
L.append(a,b,c,d) with the correct L.append((a,b,c,d)).
-
Fred Drake yazdı
the empty prompt.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
The int() function (aliased to getint()) doesn't handle that, so we must use self.tk.getint() again...
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
PythonCmd_Error() but failed to return. The error wasn't very likely (only when we run out of memory) but since the check is there we might as well return the error. (I think that Barry introduced this buglet when he added error checks everywhere.)
-
- 18 Haz, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
locals().
-
Guido van Rossum yazdı
-
- 17 Haz, 1998 5 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
keyword argument can be used to direct it somewhere else. Also documented all the other functions in this module, and even added a little example. # Haven't tested the latex for correctness -- all latex installations # appear broken.
-
Guido van Rossum yazdı
allow negative numbers to specify read until EOF (like for a regular file's read() method).
-
Guido van Rossum yazdı
eval(raw_input(s)). The statement about breaking a long expression over multiple lines is no longer true.
-
Guido van Rossum yazdı
+ Took the "list" argument out of the other functions that no longer need it. This speeds things up a little more. + Small comment changes in accord with that. + Exploited the now-safe ability to cache values in the partitioning loop. Makes no timing difference on my flavor of Pentium, but this machine ran out of registers 12 iterations ago. It should yield a small speedup on a RISC machine, and not hurt in any case.
-
- 16 Haz, 1998 5 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
instead of testing whether the list changed size after each comparison, temporarily set the type of the list to an immutable list type. This should allow continued use of the list for legitimate purposes but disallows all operations that can change it in any way. (Changes to the internals of list items are not caught, of cause; that's not possible to detect, and it's not necessary to protect the sort code, either.)
-
Guido van Rossum yazdı
credit for complaining about this and for testing these changes.
-
- 15 Haz, 1998 4 kayıt (commit)
-
-
Guido van Rossum yazdı
From: Dan Pierson <dan@remote.control.com> To: "Mark Hammond (E-mail)" <MHammond@skippinet.com.au>, "Guido van Rossum (E-mail)" <guido@cnri.reston.va.us> Date: Mon, 8 Jun 1998 17:25:07 -0400 RegistryQueryValue requires that its fourth argument be initialized to the length of the buffer being passed in, this wasn't being done. I also split the call and status test into two lines with a local variable so that I could look at the status in the debugger.
-
Guido van Rossum yazdı
Added raw strings, imaginary literals, assert and exec (!) keywords, a table about Resererved classes of identifiers, and more.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-