- 13 Tem, 1998 2 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
don't try to open/create the preferences file.
-
- 10 Tem, 1998 7 kayıt (commit)
-
-
Guido van Rossum yazdı
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 yazdı
(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 yazdı
"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 yazdı
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 yazdı
-
Guido van Rossum yazdı
macros for more efficient access to the fields.
-
Guido van Rossum yazdı
to the .h file and add macros there for inlined access to the fields.
-
- 09 Tem, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(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 Tem, 1998 9 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
large letter at the top of each index section with at least the first entry for that letter.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
callable objects than regular Pythonm functions as their im_func.
-
Guido van Rossum yazdı
inconsistent.
-
Guido van Rossum yazdı
changing __dict__ *or* __bases__.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 07 Tem, 1998 19 kayıt (commit)
-
-
Guido van Rossum yazdı
frozendllmain_c at the right place.
-
Guido van Rossum yazdı
parse_endtag() was restructured in parse_endtag() and finish_endtag().
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
which is now Py_BuildValue().
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
after a return).
-
Guido van Rossum yazdı
after a return or goto).
-
Guido van Rossum yazdı
after a return).
-
Guido van Rossum yazdı
(unreachable break after a return) but one was a real bug: ReadFrames() was getting a bogus framecount because of a missing '&'.
-
Guido van Rossum yazdı
must be enabled here, otherwise the errno we set on overflows is not the errno that's being read by compile.c. Wonder how many other files that do their own "#include config.h" need this too :-( (Because of the structure of autoconf, it's not so simple to get this into config.h...)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
(1) reorder the tests for -Olimit 1500 and -OPT:Olimit=0 so that the latter test is performed first, and if it works, the former test is skipped. This should get rid of the problem that the new SGI compilers accept both but emit a warning about -Olimit 1500. (2) The DGUX hack was somehow split in two by the Olimit tests, probably as the result of a non-context diff. Moved this back together again, after the Olimit tests.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
change it to iterate over sys.argv[1:]. Suggestion by Gerry Wiener.
-
Barry Warsaw yazdı
py-mark-def-or-class): Integrated Michael Ernst latest patches. Primarily, it allows functions that search or mark defs/classes based on programmatic specification, to take an 'either flag value which allows searching for both classes and defs (stopping at the nearest construct). Also clean up some docstrings.
-
Barry Warsaw yazdı
comment-indent-function's default lambda value (in simple.el), this version finally kills this nit: auto-filling a comment that starts in column zero with filladapt turned off would cascade the #'s to the right. Now auto-filling seems to work with or without filladapt, and with the comment starting in any column. (python-mode): Set comment-indent-function.
-
Guido van Rossum yazdı
-
- 06 Tem, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
accidentally cut it out when removing the access statement! Added a paragraph on __builtins__ and other possible manipulations of the key space of the dictionaries. Added some index entries.
-