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
fc93b0a8
Commit
fc93b0a8
authored
Feb 16, 2001
by
Thomas Wouters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove trailing comma from 'why_code' enum, which was introduced by the
continue-inside-try patch. Partly fixes SF bug #132597.
parent
6e0e91af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Python/ceval.c
Python/ceval.c
+1
-1
No files found.
Python/ceval.c
View file @
fc93b0a8
...
...
@@ -323,7 +323,7 @@ enum why_code {
WHY_RERAISE
,
/* Exception re-raised by 'finally' */
WHY_RETURN
,
/* 'return' statement */
WHY_BREAK
,
/* 'break' statement */
WHY_CONTINUE
,
/* 'continue' statement */
WHY_CONTINUE
/* 'continue' statement */
};
static
enum
why_code
do_raise
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
...
...
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