- 14 Ara, 1998 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
> mpz.mpz('\xff') should return mpz(255). Instead it returns > mpz(4294967295L). Looks like the constructor doesn't work with strings > containing characters above chr(128). Caused by using just 'char' where 'unsigned char' should have been used.
-
- 11 Ara, 1998 4 kayıt (commit)
-
-
Guido van Rossum yazdı
buffer increment, and sometimes the new buffer size. Make it do what its name says, and fix the one place where this matters to the caller. Also add a comment explaining why we call lseek() and then ftell().
-
Guido van Rossum yazdı
from the fast free list -- the type (at least) is reset by _Py_Dealloc().
-
Guido van Rossum yazdı
in early dealloc. Patch by Andrew Dalke.
-
Guido van Rossum yazdı
But IMHO, this problem really reveals an annoyance in Python's makesetup. makesetup puts the global include directories "$(INCLUDEPY) $(EXECINCLUDEPY)" in front of the directories defined by the module in Setup. Therefore global (potentially older) header files are preferred over the ones set by the module, which makes it hard to compile new versions of modules when the old versions are installed. AFAIK, the other way around is common practice for most other software. This patch to makesetup would be an potential fix for this problem, though I don't know if it breaks anything else.
-
- 10 Ara, 1998 13 kayıt (commit)
-
-
Fred Drake yazdı
<moduleinfo> element based on various meta information, and strip some cruftiness. This is more usable for information extraction, and organizes the information more clearly. cleanup_synopses(): Rewrite to use create_module_info(), so this will work with multi-rooted "documents".
-
Fred Drake yazdı
Sheesh, where do these things come from?
-
Fred Drake yazdı
contains "e" events for them. This wasn't used anyway.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
little; more thinking is needed about what we really want.
-
Fred Drake yazdı
-
Fred Drake yazdı
likely to be used.
-
- 09 Ara, 1998 4 kayıt (commit)
-
-
Guido van Rossum yazdı
says Chris Herborth.
-
Guido van Rossum yazdı
when we create a recursive instance, by setting the class variable 'FieldStorageClass' to the desired class. By default, this is set to None, in which case we use self.__class__ (as before).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
The example Makefile.pre.in should also look at Setup.thread and Setup.local. Otherwise modules such as thread don't get incorporated in extensions.
-
- 08 Ara, 1998 8 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Fred Drake yazdı
confusion, and describe what the "directives" are about.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
with it.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
A. Koren <pkoren@hex.net>.
-
Guido van Rossum yazdı
In literal mode, also don't do anything about entity and character references, or about closing CDATA elements.
-
Guido van Rossum yazdı
function as DL_IMPORT()!
-
- 07 Ara, 1998 7 kayıt (commit)
-
-
Guido van Rossum yazdı
When literal mode is entered it should exit automatically when the matching close tag of the last unclosed open tag is encountered. This patch fixes this.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
In SimpleHTTPServer.py, the server specified in test() should be BaseHTTPServer.HTTPServer, in case the request handler should want to reference the two attributes added by BaseHTTPServer.server_bind: self.server_name = hostname self.server_port = port There was some Bobo CGI code that wanted access to those attributes.
-
Guido van Rossum yazdı
In CGIHTTPServer.py, the list of acceptable formats is -split- on spaces but -joined- on commas, resulting in double commas in the joined text. It appears harmless to my browser but ought to be fixed anyway. 'A, B, C' -> 'A,', 'B,', 'C,' -> 'A,,B,,C'
-
Guido van Rossum yazdı
might actually work.
-
- 05 Ara, 1998 3 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-