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
d66667a8
Commit
d66667a8
authored
Dec 10, 2013
by
Victor Stinner
Browse files
Options
Browse Files
Download
Plain Diff
(Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
parents
70c4b448
06f74611
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Include/import.h
Include/import.h
+4
-4
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Include/import.h
View file @
d66667a8
...
...
@@ -86,15 +86,15 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
PyAPI_FUNC
(
void
)
_PyImport_ReInitLock
(
void
);
PyAPI_FUNC
(
PyObject
*
)
_PyImport_FindBuiltin
(
PyAPI_FUNC
(
PyObject
*
)
_PyImport_FindBuiltin
(
const
char
*
name
/* UTF-8 encoded string */
);
PyAPI_FUNC
(
PyObject
*
)
_PyImport_FindExtensionObject
(
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
int
)
_PyImport_FixupBuiltin
(
PyAPI_FUNC
(
PyObject
*
)
_PyImport_FindExtensionObject
(
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
int
)
_PyImport_FixupBuiltin
(
PyObject
*
mod
,
const
char
*
name
/* UTF-8 encoded string */
);
PyAPI_FUNC
(
int
)
_PyImport_FixupExtensionObject
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
int
)
_PyImport_FixupExtensionObject
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
struct
_inittab
{
const
char
*
name
;
/* ASCII encoded string */
...
...
Misc/NEWS
View file @
d66667a8
...
...
@@ -10,6 +10,8 @@ Release date: 2014-01-05
Core and Builtins
-----------------
- Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
- Issue #19736: Add module-level statvfs constants defined for GNU/glibc
based systems.
...
...
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