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
4a4ca7c1
Commit
4a4ca7c1
authored
Dec 27, 2015
by
Brett Cannon
Browse files
Options
Browse Files
Download
Plain Diff
Merge for issue #12484
parents
0792451e
762d5ea8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
19 deletions
+1
-19
Doc/c-api/import.rst
Doc/c-api/import.rst
+0
-5
Doc/faq/extending.rst
Doc/faq/extending.rst
+0
-14
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Doc/c-api/import.rst
View file @
4a4ca7c1
...
...
@@ -236,11 +236,6 @@ Importing Modules
For internal use only.
.. c:function:: PyObject* _PyImport_FixupExtension(char *, char *)
For internal use only.
.. c:function:: int PyImport_ImportFrozenModuleObject(PyObject *name)
Load a frozen module named *name*. Return ``1`` for success, ``0`` if the
...
...
Doc/faq/extending.rst
View file @
4a4ca7c1
...
...
@@ -247,20 +247,6 @@ For Red Hat, install the python-devel RPM to get the necessary files.
For Debian, run ``apt-get install python-dev``.
What does "SystemError: _PyImport_FixupExtension: module yourmodule not loaded" mean?
-------------------------------------------------------------------------------------
This means that you have created an extension module named "yourmodule", but
your module init function does not initialize with that name.
Every module init function will have a line similar to::
module = Py_InitModule("yourmodule", yourmodule_functions);
If the string passed to this function is not the same name as your extension
module, the :exc:`SystemError` exception will be raised.
How do I tell "incomplete input" from "invalid input"?
------------------------------------------------------
...
...
Misc/ACKS
View file @
4a4ca7c1
...
...
@@ -1313,6 +1313,7 @@ Pete Sevander
Denis Severson
Ian Seyer
Dmitry Shachnev
Anish Shah
Daniel Shahaf
Mark Shannon
Ha Shao
...
...
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