- 17 Dec, 1998 3 commits
-
-
Guido van Rossum authored
have to use a const-correct prototype on BeOS or the compiler gets uppity.
-
Guido van Rossum authored
BeOS headers live in various non-standard places; luckily, there's an environment variable that lists them all.
-
Guido van Rossum authored
-
- 15 Dec, 1998 7 commits
-
-
Guido van Rossum authored
This fixes a bug that can cause core dumps when doing seeks in input StringIO objects. This has a number of other clean-ups.
-
Guido van Rossum authored
(This only applies when COUNT_ALLOCS is defined.)
-
Guido van Rossum authored
When printing missing modules, also print the module they were imported from.
-
Barry Warsaw authored
string we find ourselves in, based on the passed in delimiter. (py-compute-indentation): Fixes for indentation errors when we land inside a triple quoted string. For example: def foo(): if os.path.isfile(o_pri_mbox_file) and os.path.isfile(o_pub_mbox_file): print """\ I found both a private and a public mbox archive file private: %s public : %s I won't move either file, but you should choose one and move it to %s You may want to merge them manually, but be careful about exposing private correspondences to the public.""" % ( o_pri_mbox_file, o_pub_mbox_file, mbox_file) *----indentation would be wrong on this line.
-
Barry Warsaw authored
to color constants (i.e. red constant, green constant, blue constant). But I haven't hooked this up yet because the UI gets more crowded and the arrows don't reflect the correct values. Added "Go to Black" and "Go to White" buttons.
-
Barry Warsaw authored
"Author" => "Contact"
-
Barry Warsaw authored
-
- 14 Dec, 1998 2 commits
-
-
Barry Warsaw authored
-
Andrew M. Kuchling authored
> 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 Dec, 1998 4 commits
-
-
Guido van Rossum authored
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 authored
from the fast free list -- the type (at least) is reset by _Py_Dealloc().
-
Guido van Rossum authored
in early dealloc. Patch by Andrew Dalke.
-
Guido van Rossum authored
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 Dec, 1998 13 commits
-
-
Fred Drake authored
<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 authored
Sheesh, where do these things come from?
-
Fred Drake authored
contains "e" events for them. This wasn't used anyway.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
little; more thinking is needed about what we really want.
-
Fred Drake authored
-
Fred Drake authored
likely to be used.
-
- 09 Dec, 1998 4 commits
-
-
Guido van Rossum authored
says Chris Herborth.
-
Guido van Rossum authored
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 authored
-
Guido van Rossum authored
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 Dec, 1998 7 commits
-
-
Guido van Rossum authored
-
Fred Drake authored
confusion, and describe what the "directives" are about.
-
Guido van Rossum authored
-
Guido van Rossum authored
with it.
-
Guido van Rossum authored
-
Fred Drake authored
A. Koren <pkoren@hex.net>.
-
Guido van Rossum authored
In literal mode, also don't do anything about entity and character references, or about closing CDATA elements.
-