summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use getargs() function.Guido van Rossum1992-01-273-62/+47
|
* New getargs() function. Define macros with conventional names,Guido van Rossum1992-01-271-0/+28
| | | | except get*str*arg --> get*Str*arg; get*str*arg fetches a C string.
* Cal get*Str*arg() instead of get*str*arg(), until the code is fixed.Guido van Rossum1992-01-271-8/+10
|
* Change prototypes decision.Guido van Rossum1992-01-271-3/+8
|
* Don't print "Unhandled exception: " when one occurs -- just print its name.Guido van Rossum1992-01-271-0/+2
|
* Ported to THINK C.Guido van Rossum1992-01-271-2/+15
|
* New getargs() function: a single varargs function,Guido van Rossum1992-01-271-296/+187
| | | | guided by a format string, makes all get*arg() functions unnecessary.
* Fix range error (doc and impl of re_search disagreed!)Guido van Rossum1992-01-271-29/+32
| | | | | Use getargs() function. Drop re_string from re object.
* Use getargs() function.Guido van Rossum1992-01-273-373/+198
|
* Retract the rage bugfix, but change the range assertion.Guido van Rossum1992-01-261-1/+2
|
* Add '*' for varargs list.Guido van Rossum1992-01-261-1/+5
|
* Get rid of redundant type checks.Guido van Rossum1992-01-261-53/+26
| | | | Define % operator similar to int%int.
* sysset(name, NULL) does nothing if sys.name is undefinedGuido van Rossum1992-01-261-2/+6
|
* getbinaryname is now part of dl_loadmod.Guido van Rossum1992-01-261-63/+2
|
* Add method to call wsetactive(win).Guido van Rossum1992-01-261-0/+13
|
* Make "range" one smaller (discrepancy between doc and source for regex.c!).Guido van Rossum1992-01-261-1/+1
|
* Raise SyntaxError for syntax errors detected in this phase.Guido van Rossum1992-01-261-12/+12
|
* Use output from h2py.Guido van Rossum1992-01-244-1204/+1170
|
* Minor fixes.Guido van Rossum1992-01-242-4/+22
|
* Initial revisionGuido van Rossum1992-01-241-0/+65
|
* Experimental version writes the command to a file.Guido van Rossum1992-01-241-3/+15
|
* Initial revisionGuido van Rossum1992-01-2214-0/+1776
|
* Change \verb\xxx\ in section titles back to {\tt xxx}.Guido van Rossum1992-01-212-28/+28
|
* Another large run of changes and additions.Guido van Rossum1992-01-202-510/+1034
|
* #ifdef'ed an unreachable line out.Guido van Rossum1992-01-191-0/+2
|
* Added -d option (increments debugging variable); mostly to get ridGuido van Rossum1992-01-191-3/+5
| | | | of a compiler warning.
* Use strtoul() for oct/hex constants.Guido van Rossum1992-01-191-3/+11
| | | | Accept * as well as + in varargs arg list.
* Initial revisionGuido van Rossum1992-01-193-0/+1829
|
* Use Tatu Ylonen's copyleft-free reimplementation ofGuido van Rossum1992-01-191-2/+3
| | | | GNU regular expressions
* Added typedef for longobject and declarations for long_{format,scan}.Guido van Rossum1992-01-191-0/+5
|
* Add prototypes.Guido van Rossum1992-01-191-105/+148
| | | | Change / and % to match divmod.
* Move the longobject typedef to longobject.h.Guido van Rossum1992-01-191-9/+4
| | | | Remove some functions that need not be exported.
* Added a header file.Guido van Rossum1992-01-191-0/+4
|
* Make / and % do the same as divmod.Guido van Rossum1992-01-191-117/+67
|
* Support for dynamic loading added.Guido van Rossum1992-01-191-5/+132
|
* Change versions.Guido van Rossum1992-01-191-2/+6
| | | | Save argv[0] in global argv0.
* If sys.trace is None, don't trace. For exceptions, only useGuido van Rossum1992-01-191-6/+7
| | | | the local trace function.
* long_format() is now declared in longobject.h.Guido van Rossum1992-01-191-5/+2
|
* Another round of careful revisions.Guido van Rossum1992-01-172-248/+514
|
* Use US paper size.Guido van Rossum1992-01-171-7/+7
|
* Just another intermediate version...Guido van Rossum1992-01-162-78/+178
|
* Added indexing commandsGuido van Rossum1992-01-162-8/+82
|
* Added 'r(et)v(al) command.Guido van Rossum1992-01-161-22/+50
| | | | Added pdd (post-mortem debugging) method to class Pdb.
* Moved documentation out to pdb.doc file.Guido van Rossum1992-01-161-273/+88
| | | | | Moved class Cmd out to module cmd.py. Rewrote implementation of stack trace to incorporate traceback objects.
* New function gettupleslice(v, i, j).Guido van Rossum1992-01-142-0/+13
|
* Change tb_here() prototype.Guido van Rossum1992-01-141-1/+1
|
* tb_here() can now get the lasti and lineno arguments from the frame.Guido van Rossum1992-01-141-4/+2
|
* Ensure that sys.argv[0] always exists (maybe as empty string).Guido van Rossum1992-01-141-2/+6
|
* New version from the net.Guido van Rossum1992-01-141-17/+149
|
* Added close method for menus.Guido van Rossum1992-01-141-8/+45
| | | | Check for closed objects in getattr (not perfect, but better).