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
464fe3aa
Commit
464fe3aa
authored
Jun 13, 2001
by
Marc-André Lemburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Temporarily disable the message to stderr. Jeremy will know what to do
about this...
parent
13a01726
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Python/pythonrun.c
Python/pythonrun.c
+3
-1
No files found.
Python/pythonrun.c
View file @
464fe3aa
...
...
@@ -1076,8 +1076,10 @@ run_pyc_file(FILE *fp, char *filename, PyObject *globals, PyObject *locals,
if
(
v
&&
flags
)
{
if
(
co
->
co_flags
&
CO_NESTED
)
flags
->
cf_nested_scopes
=
1
;
#if 0
fprintf(stderr, "run_pyc_file: nested_scopes: %d\n",
flags
->
cf_nested_scopes
);
flags->cf_nested_scopes);
#endif
}
Py_DECREF
(
co
);
return
v
;
...
...
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