- 31 Aug, 1998 1 commit
-
-
Guido van Rossum authored
support in this module can go. The patch only deletes code (PyLong_FromLongLong() and PyLong_AsLongLong()). By Sjoerd Mullender.
-
- 29 Aug, 1998 2 commits
-
-
Guido van Rossum authored
never executed because of a return statement. Sigh.
-
Barry Warsaw authored
-
- 28 Aug, 1998 6 commits
-
-
Fred Drake authored
-
Fred Drake authored
little README giving the page count of each file when printed.
-
Fred Drake authored
files.
-
Fred Drake authored
-
Fred Drake authored
as --option value. Minor nits cleaned up.
-
Fred Drake authored
a little better, and produce better HTML. Add some index entries.
-
- 27 Aug, 1998 5 commits
-
-
Guido van Rossum authored
held. It releases the lock around the call to the function pointed to by PyOS_ReadlineFunctionPointer (default PyOS_StdioReadline()).
-
Guido van Rossum authored
According to Vladimir Marangozov, this is necessary for AIX, where high optimization levels inline this function and then get it wrong :-(
-
Guido van Rossum authored
It is needed so that tokenizer.c can use PySys_WriteStderr().
-
Guido van Rossum authored
1) I added a command queue which is helpful to me (at least so far) and would also allow syntax like 's;s' (step; step) in conjunction with precmd 2) doc_leader allows the derived class to print a message before the help output. Defaults to current practise of a blank line 3) nohelp allows one to override the 'No help on' message. I need 'Undefined command: "%s". Try "help".' 4) Pass line to self.precmd to allow one to do some parsing: change first word to lower case, strip out a leading number, whatever. 5) Pass the result of onecmd and the input line to postcmd. This allows one to ponder the stop result before it is effective. 6) emptyline() requires a if self.lastcmd: conditional because if the first command is null (<cr>), you get an infinite recursion with the code as it stands.
-
Jack Jansen authored
-
- 25 Aug, 1998 14 commits
-
-
Jeremy Hylton authored
-
Guido van Rossum authored
that file in fact did not exist or at least was not used. Change this so that __file__ is *only* set to the .pyc/.pyo file when it actually read the code object from it; otherwise __file__ is set to the .py file.
-
Guido van Rossum authored
happen when you use a non-keyword argument after a keyword argument, and in this case you also get a syntax error. I fully suspect that the underflow is caused by the code that stops generating code when it detects the syntax error, but I can't find the culprit right now. I know, I know.)
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
use it in tokenizer.c.
-
Guido van Rossum authored
Metrowerks specific #ifdef.
-
Guido van Rossum authored
The MS compiler doesn't call it 'long long', it uses __int64, so a new #define, LONG_LONG, has been added and all occurrences of 'long long' are replaced with it.
-
Guido van Rossum authored
-
Guido van Rossum authored
2-digit years are now converted using rules that are (according to Fredrik Lundh) recommended by POSIX or X/Open: 0-68 mean 2000-2068, 69-99 mean 1969-1999. 2-digit years are now only accepted if time.accept2dyear is set to a nonzero integer; if it is zero or not an integer or absent, only year values >= 1900 are accepted. Year values 100-1899 and negative year values are never accepted. The initial value of time.accept2dyear depends on the environment variable PYTHONY2K: if PYTHONY2K is set and non-empty, time.accept2dyear is initialized to 0; if PYTHONY2K is empty or not set, time.accept2dyear is initialized to 0.
-
Guido van Rossum authored
and x is not an instance of C (nor of a class derived of C).
-
Guido van Rossum authored
mktime() and such.
-
Guido van Rossum authored
Sjoerd writes: This version of freeze creates one file per Python module, instead of one humongous file for all Python modules. bkfile: new module to used to write files with backups. No new file is produced if the new contents is identical to the old. New option "-x excluded-module" for modulefinder test program. New option "-i filename" for freeze main program to include a list of options in place of the -i option.
-
Guido van Rossum authored
by the new '-x' arguments, losing the previous items. Thus, test_support, test_b1 & test_b2 are executed (and warnings issued). (Discovered by Vladimir Marangozov.)
-
- 24 Aug, 1998 6 commits
-
-
Guido van Rossum authored
with tags that have - or . in their names.
-
Fred Drake authored
described that way. setattr(): Clarify that the attribute doesn't need to exist to be set.
-
Fred Drake authored
-
Fred Drake authored
object whose method this is --> object on which the method operates
-
Guido van Rossum authored
This is a patch that Bill Bummgarner did for 1.4 that hasn't made its way into the distribution yet. This is important if you want to use the ObjC module.
-
Guido van Rossum authored
-
- 23 Aug, 1998 1 commit
-
-
Guido van Rossum authored
-
- 21 Aug, 1998 2 commits
-
-
Fred Drake authored
-
Andrew M. Kuchling authored
method, so .groups() didn't work inside the replacement function called by re.sub. One-line fix: set self._num_regs inside subn().
-
- 20 Aug, 1998 3 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
shell buffers. (py-shell): Moved the require of comint to the top level. Also use-local-map py-shell-map instead of hacking on the comint-mode-map. This eliminates breakage of other comint-mode buffers (e.g. shell).
-
Barry Warsaw authored
-