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
2ea1a598
Commit
2ea1a598
authored
Feb 26, 2014
by
Zachary Ware
Browse files
Options
Browse Files
Download
Plain Diff
Merge with 3.3
parents
01331872
a1a6e67d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
Doc/c-api/exceptions.rst
Doc/c-api/exceptions.rst
+4
-4
Doc/c-api/module.rst
Doc/c-api/module.rst
+1
-1
Doc/c-api/typeobj.rst
Doc/c-api/typeobj.rst
+2
-3
No files found.
Doc/c-api/exceptions.rst
View file @
2ea1a598
...
...
@@ -525,11 +525,11 @@ Exception Objects
reference, as accessible from Python through :attr:`__cause__`.
.. c:function:: void PyException_SetCause(PyObject *ex, PyObject *c
tx
)
.. c:function:: void PyException_SetCause(PyObject *ex, PyObject *c
ause
)
Set the cause associated with the exception to *c
tx
*. Use *NULL* to clear
it. There is no type check to make sure that *c
tx
* is either an exception
instance or :const:`None`. This steals a reference to *c
tx
*.
Set the cause associated with the exception to *c
ause
*. Use *NULL* to clear
it. There is no type check to make sure that *c
ause
* is either an exception
instance or :const:`None`. This steals a reference to *c
ause
*.
:attr:`__suppress_context__` is implicitly set to ``True`` by this function.
...
...
Doc/c-api/module.rst
View file @
2ea1a598
...
...
@@ -120,7 +120,7 @@ There are only a few functions special to module objects.
Return a pointer to the :c:type:`PyModuleDef` struct from which the module was
created, or *NULL* if the module wasn't created with
:c:func:`PyModule_Create`.
i
:c:func:`PyModule_Create`.
.. c:function:: PyObject* PyState_FindModule(PyModuleDef *def)
...
...
Doc/c-api/typeobj.rst
View file @
2ea1a598
...
...
@@ -205,9 +205,8 @@ type objects) *must* have the :attr:`ob_size` field.
bit currently defined is :const:`Py_PRINT_RAW`. When the :const:`Py_PRINT_RAW`
flag bit is set, the instance should be printed the same way as :c:member:`~PyTypeObject.tp_str`
would format it; when the :const:`Py_PRINT_RAW` flag bit is clear, the instance
should be printed the same was as :c:member:`~PyTypeObject.tp_repr` would format it. It should
return ``-1`` and set an exception condition when an error occurred during the
comparison.
should be printed the same way as :c:member:`~PyTypeObject.tp_repr` would format it. It should
return ``-1`` and set an exception condition when an error occurs.
It is possible that the :c:member:`~PyTypeObject.tp_print` field will be deprecated. In any case,
it is recommended not to define :c:member:`~PyTypeObject.tp_print`, but instead to rely on
...
...
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