We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace6607 commit 61e008aCopy full SHA for 61e008a
Include/abstract.h
@@ -14,9 +14,9 @@ extern "C" {
14
15
Print an object 'o' on file 'fp'. Returns -1 on error. The flags argument
16
is used to enable certain printing options. The only option currently
17
- supported is Py_Print_RAW.
18
-
19
- (What should be said about Py_Print_RAW?). */
+ supported is Py_PRINT_RAW. By default (flags=0), PyObject_Print() formats
+ the object by calling PyObject_Repr(). If flags equals to Py_PRINT_RAW, it
+ formats the object by calling PyObject_Str(). */
20
21
22
/* Implemented elsewhere:
0 commit comments