Staging
v0.8.1
https://github.com/python/cpython
Revision d6fddf3d15b5c7b012c919b48de6447d7a250f1c authored by Barry Warsaw on 25 September 2013, 13:36:58 UTC, committed by Barry Warsaw on 25 September 2013, 13:36:58 UTC
  limiting the call to readline().  Original patch by Michał
  Jastrzębski and Giampaolo Rodola.

with test fixes by Serhiy Storchaka.
1 parent 4e95d60
Raw File
Tip revision: d6fddf3d15b5c7b012c919b48de6447d7a250f1c authored by Barry Warsaw on 25 September 2013, 13:36:58 UTC
- Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by
Tip revision: d6fddf3
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
				  const char *, PyArena *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top