- 16 Jul, 1998 3 commits
-
-
Guido van Rossum authored
before JPython 1.0 came out.)
-
Guido van Rossum authored
Sparc Solaris 2.6 (fully patched!) that I don't want to dig into, but which I suspect is a bug in the multithreaded malloc library that only shows up when run on a multiprocessor. (The program wasn't using threads, it was just using the multithreaded C library.)
-
Guido van Rossum authored
In the bbox method of Group (Canvas.py file), you should read return self.canvas._getints(self._do('bbox')) instead of return self._getints(self._do('bbox'))
-
- 15 Jul, 1998 2 commits
-
-
Guido van Rossum authored
-
Fred Drake authored
extensions, and include the "." in ".pyc". Still need to get _tkinter.c:Tkapp_New() to use baseName....
-
- 14 Jul, 1998 1 commit
-
-
Guido van Rossum authored
low-level Python exit handler. This can attempt to call Python code at a point that the interpreter and thread state have already been destroyed, causing a Bus Error. Given the intended use of Py_AtExit(), I'm not convinced that it's a good idea to call it earlier during Python's finalization sequence... (Although this is the only use for it in the entire distribution.)
-
- 13 Jul, 1998 7 commits
-
-
Guido van Rossum authored
by Carey Evans <c.evans@clear.net.nz>, for picky mail servers.
-
Jack Jansen authored
can be deleted, but that's good enough for things like a "Windows" menu with the dynamic list of open windows at the end of the menu.
-
Jack Jansen authored
(which was missing, for some reason).
-
Jack Jansen authored
create the preferences file. This is so that frozen programs don't interfere with an existing Python installation, or leave turds in the Preferences folder.
-
Jack Jansen authored
There's also new support for importing code fragments: if a file on sys.path contains a PYD resource with resourcename equal to the name of the module to be imported this PYD resource should contain a (pascal) string with the name of a code fragment to load. This allows freezing Python programs without access to source or a development environment.
-
Jack Jansen authored
-
Jack Jansen authored
don't try to open/create the preferences file.
-
- 10 Jul, 1998 7 commits
-
-
Guido van Rossum authored
faster (using PyList_GetSlice()). Also added a test for a NULL argument, as with PySequence_Tuple(). (Hmm... Better names for these two would be PyList_FromSequence() and PyTuple_FromSequence(). Oh well.)
-
Guido van Rossum authored
(1) If a sequence S is shorter than len(S) indicated, don't fail -- just use the shorter size. (I.e, len(S) is just a hint.) (2) Implement the special case map(None, S) as list(S) -- it's faster.
-
Guido van Rossum authored
"indefinite length" sequences. These should still have a length, but the length is only used as a hint -- the actual length of the sequence is determined by the item that raises IndexError, which may be either smaller or larger than what len() returns. (This is a novelty; map(), filter() and reduce() only allow the actual length to be larger than what len() returns, not shorter. I'll fix that shortly.)
-
Jack Jansen authored
item) as parameter and returns a handle suitable for passing to SetDialogItem as a user-item redraw routine. Note that you can only make one of these, for now.
-
Guido van Rossum authored
-
Guido van Rossum authored
macros for more efficient access to the fields.
-
Guido van Rossum authored
to the .h file and add macros there for inlined access to the fields.
-
- 09 Jul, 1998 1 commit
-
-
Guido van Rossum authored
(2) Made the test script a bit fancier -- you can now use it to run arbitrary scripts in restricted mode, and it will do the right thing. (The interactive mode is still pretty lame; should integrate this with code.interact().)
-
- 08 Jul, 1998 9 commits
-
-
Fred Drake authored
-
Fred Drake authored
large letter at the top of each index section with at least the first entry for that letter.
-
Guido van Rossum authored
-
Guido van Rossum authored
callable objects than regular Pythonm functions as their im_func.
-
Guido van Rossum authored
inconsistent.
-
Guido van Rossum authored
changing __dict__ *or* __bases__.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 07 Jul, 1998 10 commits
-
-
Guido van Rossum authored
frozendllmain_c at the right place.
-
Guido van Rossum authored
parse_endtag() was restructured in parse_endtag() and finish_endtag().
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
which is now Py_BuildValue().
-
Guido van Rossum authored
-
Guido van Rossum authored
after a return).
-
Guido van Rossum authored
after a return or goto).
-
Guido van Rossum authored
after a return).
-