Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8c1e1502
Commit
8c1e1502
authored
May 24, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some done "to do" items.
Changed #ifdef DEBUG slightly.
parent
ded690fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
Python/ceval.c
Python/ceval.c
+3
-9
No files found.
Python/ceval.c
View file @
8c1e1502
...
...
@@ -26,9 +26,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* XXX TO DO:
XXX how to pass arguments to call_trace?
XXX access stuff can probably dereference NULL locals?
XXX need to extend apply() to be able to pass keyword args
XXX need to be able to call built-in functions with keyword args
XXX totally get rid of access stuff
XXX speed up searching for keywords by using a dictionary
XXX unknown keyword shouldn't raise KeyError?
XXX document it!
...
...
@@ -47,11 +45,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Turn this on if your compiler chokes on the big switch: */
/* #define CASE_TOO_BIG 1 */
/* Turn this on if you want to debug the interpreter: */
/* (This can be on even if NDEBUG is defined) */
/* #define DEBUG 1 */
#if defined(DEBUG) || !defined(NDEBUG)
#ifdef DEBUG
/* For debugging the interpreter: */
#define LLTRACE 1
/* Low-level trace feature */
#define CHECKEXC 1
/* Double-check exception checking */
...
...
@@ -566,7 +560,7 @@ eval_code2(co, globals, locals,
/* Extract opcode and argument */
#if
def DEBUG
#if
defined(DEBUG) || defined(LLTRACE)
f
->
f_lasti
=
INSTR_OFFSET
();
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment