Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c644752 commit 69b9ae4Copy full SHA for 69b9ae4
1 file changed
Modules/parsermodule.c
@@ -213,7 +213,18 @@ PyTypeObject PyAST_Type = {
213
0, /* tp_as_mapping */
214
0, /* tp_hash */
215
0, /* tp_call */
216
- 0 /* tp_str */
+ 0, /* tp_str */
217
+ 0, /* tp_getattro */
218
+ 0, /* tp_setattro */
219
+
220
+ /* Functions to access object as input/output buffer */
221
+ 0, /* tp_as_buffer */
222
223
+ /* Space for future expansion */
224
+ 0, /* tp_xxx4 */
225
226
+ /* __doc__ */
227
+ "Intermediate representation of a Python parse tree."
228
229
}; /* PyAST_Type */
230
0 commit comments