- 04 Şub, 1998 2 kayıt (commit)
-
-
Fred Drake yazdı
requires "distill" from a FrameMaker installation. ;-) Would probably need to be different for Windows/Mac.
-
Fred Drake yazdı
"standard". This is mostly for documentation of modules outside the standard library.
-
- 03 Şub, 1998 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 02 Şub, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Remove references to regsub, which is obsolescent.
-
- 31 Ock, 1998 5 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
rrggbb_to_triplet(): New utility function
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 30 Ock, 1998 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 29 Ock, 1998 7 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
from regrtest.py (it still works there too, of course).
-
Guido van Rossum yazdı
Ok, I fixed the quotes, along with a bug or two. Also added another exception.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
The main incompatibility is that the error reporting method is now called as parser.syntax_error(msg) instead of parser.syntax_error(lineno, msg) This new version also has some code to deal with the <?xml?> and <!DOCTYPE> tags at the start of an XML document. The documentation has been updated, and a small test module has been created.
-
Guido van Rossum yazdı
-
- 28 Ock, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
- 27 Ock, 1998 3 kayıt (commit)
-
-
Guido van Rossum yazdı
Here's my suggested replacement for gzip.py for 1.5.1. I've re-implemeted methods readline and readlines, added an _unread, and tweaked read and _read. I tried a more complicated buffer scheme for unread (using a list of strings and string.join), but it was more complicated and slower. This version is a lot faster than the current version and is still pretty simple.
-
Guido van Rossum yazdı
number is the same as multiplying it with zero, and yields an empty sequence.
-
Barry Warsaw yazdı
-
- 26 Ock, 1998 4 kayıt (commit)
-
-
Barry Warsaw yazdı
Fixed problems when unpickling in restricted execution environments. These methods try to assign to an instance's __class__ attribute, or access the instances __dict__, which are prohibited in REE. For the first two methods, I re-implemented the old behavior when assignment to value.__class__ fails. For the load_build() I also re-implemented the old behavior when inst.__dict__.update() fails but this means that unpickling in REE is semantically different than unpickling in unrestricted mode.
-
Barry Warsaw yazdı
a copy of the defaults dictionary and merges the section's dictionary into it so that sections can override the defaults.
-
Fred Drake yazdı
calling the Python API.
-
Guido van Rossum yazdı
demo, so here it is.
-
- 22 Ock, 1998 10 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Removed " (byte code instruction)" from the output of the {opcodedesc} environment; this should only appear in the index (which it now does). Removed some really old cruft related to otherwise removed debugging code. (I *think* assignments to $* set & clear auto-flush of <STDOUT>, but don't really remember. Removing them seems to not change anything!)
-
Fred Drake yazdı
any changes introduced there. Also ensure a little more space between the module name and the parenthesized comment.
-
Fred Drake yazdı
Clarified that floor() and ceil() return reals. Same for the integer part returned by modf(). Some markup consistency changes.
-
Fred Drake yazdı
-
Fred Drake yazdı
importantly, \url{}.
-
Fred Drake yazdı
constructs should be used.
-
Fred Drake yazdı
semantic concepts. Added two new ones (not discussed with Guido: \constant{}: Markup for constants defined in Python modules. \cfunction{}: Markup for C functions; these should probably be distinguished by font, but are not at this time (since they're typically \code{} at this point).
-
- 21 Ock, 1998 3 kayıt (commit)
-
-
Barry Warsaw yazdı
continuation lines. This fixes this bug report, reported by Frank Stajano. # But if I split the "raise" line and reindent, the else WRONGLY goes up a # level (?!?) while condition1: if condition2: raise error3, \ moreInfo4 else: # meant to close "if condition2" action5()
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
a religious issue: RMS decrees that the Enter (RET) key should just do a newline and a LFD (C-j) should do a newline and indent (i.e. the python-mode version of this). Almost everyone I know disagrees and finds that RET should do newline and indent. Almost everyone hacks their modes to do this, if they know how. Because it's hard for newbies to figure out how to do this, and because most DOS keyboards lack a LFD (leaving users to the more obscure C-j), I think it makes better sense to add this default binding.
-