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
b14b59fc
Commit
b14b59fc
authored
Sep 25, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport rev. 51987: superfluous semicola.
parent
edd81b24
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Modules/almodule.c
Modules/almodule.c
+1
-1
Modules/bz2module.c
Modules/bz2module.c
+2
-2
Python/pystate.c
Python/pystate.c
+1
-1
No files found.
Modules/almodule.c
View file @
b14b59fc
...
...
@@ -1686,7 +1686,7 @@ al_GetParamInfo(PyObject *self, PyObject *args)
{
int
res
,
param
;
ALparamInfo
pinfo
;
PyObject
*
v
,
*
item
;
;
PyObject
*
v
,
*
item
;
if
(
!
PyArg_ParseTuple
(
args
,
"ii:GetParamInfo"
,
&
res
,
&
param
))
return
NULL
;
...
...
Modules/bz2module.c
View file @
b14b59fc
...
...
@@ -1023,12 +1023,12 @@ BZ2File_seek(BZ2FileObject *self, PyObject *args)
case
MODE_CLOSED
:
PyErr_SetString
(
PyExc_ValueError
,
"I/O operation on closed file"
);
goto
cleanup
;
;
goto
cleanup
;
default:
PyErr_SetString
(
PyExc_IOError
,
"seek works only while reading"
);
goto
cleanup
;
;
goto
cleanup
;
}
if
(
where
==
2
)
{
...
...
Python/pystate.c
View file @
b14b59fc
...
...
@@ -501,7 +501,7 @@ _PyGILState_Fini(void)
{
PyThread_delete_key
(
autoTLSkey
);
autoTLSkey
=
0
;
autoInterpreterState
=
NULL
;
;
autoInterpreterState
=
NULL
;
}
/* When a thread state is created for a thread by some mechanism other than
...
...
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