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
745b8cff
Commit
745b8cff
authored
May 22, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flushline and writestring can now return an error
parent
f1e63545
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Include/ceval.h
Include/ceval.h
+1
-1
Include/fileobject.h
Include/fileobject.h
+1
-1
No files found.
Include/ceval.h
View file @
745b8cff
...
...
@@ -48,7 +48,7 @@ PyObject *PyEval_GetOwner Py_PROTO((void));
PyObject
*
PyEval_GetFrame
Py_PROTO
((
void
));
int
PyEval_GetRestricted
Py_PROTO
((
void
));
void
Py_FlushLine
Py_PROTO
((
void
));
int
Py_FlushLine
Py_PROTO
((
void
));
int
Py_AddPendingCall
Py_PROTO
((
int
(
*
func
)
Py_PROTO
((
ANY
*
)),
ANY
*
arg
));
int
Py_MakePendingCalls
Py_PROTO
((
void
));
...
...
Include/fileobject.h
View file @
745b8cff
...
...
@@ -50,7 +50,7 @@ extern PyObject *PyFile_Name Py_PROTO((PyObject *));
extern
PyObject
*
PyFile_GetLine
Py_PROTO
((
PyObject
*
,
int
));
extern
int
PyFile_WriteObject
Py_PROTO
((
PyObject
*
,
PyObject
*
,
int
));
extern
int
PyFile_SoftSpace
Py_PROTO
((
PyObject
*
,
int
));
extern
void
PyFile_WriteString
Py_PROTO
((
char
*
,
PyObject
*
));
extern
int
PyFile_WriteString
Py_PROTO
((
char
*
,
PyObject
*
));
#ifdef __cplusplus
}
...
...
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