Guido van Rossum
541563ec7e
Implement -OO; "unsafe" optimization that removes docstrings.
...
Marc-Andre Lemburg.
1999-01-28 15:08:09 +00:00
Guido van Rossum
46e9705eca
Remove prototypes for PyOS_strto[u]l -- Chris Herborth.
1998-12-10 16:57:44 +00:00
Guido van Rossum
ca90605678
Add more SET_LINENO instructions in long argument lists
1998-12-10 16:56:22 +00:00
Guido van Rossum
d076c73cc8
Changes to support other object types besides strings
...
as the code string of code objects, as long as they support
the (readonly) buffer interface. By Greg Stein.
1998-10-07 19:42:25 +00:00
Guido van Rossum
dfede31c7f
Eh, better error message for the previous change. It now says
...
"non-default argument follows default argument".
1998-10-02 14:06:56 +00:00
Guido van Rossum
29d38cd088
Treat def f(a, b=1, c): ... as an error (missing default for c)
...
instead of silently supplying a default of None fore c.
1998-10-02 13:41:54 +00:00
Guido van Rossum
90f827c67e
Comment out the print statement about underflow. (This only seems to
...
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.)
1998-08-25 18:22:17 +00:00
Guido van Rossum
234e260d5e
Since PyDict_GetItem() can't raise an exception any more, there's no
...
need to call PyErr_Clear() when it returns NULL.
1998-05-14 02:16:20 +00:00
Guido van Rossum
d295f120ae
Make first raise argument optional
1998-04-09 21:39:57 +00:00
Guido van Rossum
ed1100f3b6
Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it.
1997-10-20 23:24:07 +00:00
Guido van Rossum
ac1fc95c3c
Fixed for WITHOUT_COMPLEX compilation (Jack)
1997-10-08 15:23:55 +00:00
Guido van Rossum
beef8aa719
Cprrect stuoid tyops -- was comparing variabes with themselves because
...
of co/cp mixup.
1997-08-29 17:12:43 +00:00
Guido van Rossum
275558cb9f
Plug a leak in code_dealloc() (and reordered the deallocs to match the
...
order of the variables in the declarations).
Also removed an entry in the TODO list that's done.
1997-07-25 20:13:49 +00:00
Guido van Rossum
db9e20f418
Fix bug reported by Just: anonymous arguments used for tuples should
...
have a unique name, otherwise they get squished by locals2fast (or
fast2locals, I dunno) when the debugger is invoked before they have
been transferred to real locals.
1997-07-10 01:06:53 +00:00
Guido van Rossum
c8b6df9004
PyObject_Compare can raise an exception now.
1997-05-23 00:06:51 +00:00
Guido van Rossum
2f75b29630
Indent the #error directives so a classic K&R cpp doesn't see them.
1997-05-20 22:18:48 +00:00
Guido van Rossum
9a0f04d4cd
Get rid of obsolete support for access statement.
1997-05-09 00:58:02 +00:00
Guido van Rossum
b05a5c7698
Instead of importing graminit.h whenever one of the three grammar 'root'
...
symbols is needed, define these in Python.h with a Py_ prefix.
1997-05-07 17:46:13 +00:00
Guido van Rossum
79f25d9a7b
Quickly renamed the remaining files -- this directory is done.
1997-04-29 20:08:16 +00:00
Guido van Rossum
644a12b00c
Tweaks to keep the Microsoft compiler quier.
1997-04-09 19:24:53 +00:00
Guido van Rossum
5f5e817e00
Support for alternative string quotes (a"xx", b"xx", c"xx", ...).
...
In interactive mode, do generate code for single-string statements.
1997-04-06 03:41:40 +00:00
Guido van Rossum
228d7f3f67
Added assert statement.
1997-04-02 05:24:36 +00:00
Guido van Rossum
45b83915f8
New form of PyFPE_END_PROTECT macro.
1997-03-14 04:32:50 +00:00
Guido van Rossum
6af0c00ab6
Fix dumb bug calling parsestrplus with wrong node as argument.
...
Add prototypes for parsestr() and parsestrplus() (unrelated, but
seemed to make sense.)
1997-03-11 21:25:55 +00:00
Guido van Rossum
7c53111d5b
Added support for ``if __debug__:'' -- if -O is given, this form is
...
recognized by the code generator and code generation for the test and
the subsequent suite is suppressed.
One must write *exactly* ``if __debug__:'' or ``elif __debug__:'' --
no parentheses or operators must be present, or the optimization is
not carried through. Whitespace doesn't matter. Other uses of
__debug__ will find __debug__ defined as 0 or 1 in the __builtin__
module.
1997-03-11 18:42:21 +00:00