Staging
v0.5.1
https://github.com/python/cpython
Revision e31cb0fd16aba99e7f9228b620d0e0d5488193a7 authored by Mark Dickinson on 25 January 2009, 22:26:28 UTC, committed by Mark Dickinson on 25 January 2009, 22:26:28 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r68949 | mark.dickinson | 2009-01-25 22:25:06 +0000 (Sun, 25 Jan 2009) | 10 lines

  Merged revisions 68947 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r68947 | mark.dickinson | 2009-01-25 22:12:31 +0000 (Sun, 25 Jan 2009) | 3 lines

    No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough.
    This change should silence a compiler warning on Windows.
  ........
................
1 parent e959f2f
Raw File
Tip revision: e31cb0fd16aba99e7f9228b620d0e0d5488193a7 authored by Mark Dickinson on 25 January 2009, 22:26:28 UTC
Merged revisions 68949 via svnmerge from
Tip revision: e31cb0f
compile.h

#ifndef Py_COMPILE_H
#define Py_COMPILE_H

#include "code.h"

#ifdef __cplusplus
extern "C" {
#endif

/* Public interface */
struct _node; /* Declare the existence of this type */
PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);

/* Future feature support */

typedef struct {
    int ff_features;      /* flags set by future statements */
    int ff_lineno;        /* line number of last future statement */
} PyFutureFeatures;

#define FUTURE_NESTED_SCOPES "nested_scopes"
#define FUTURE_GENERATORS "generators"
#define FUTURE_DIVISION "division"
#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
#define FUTURE_WITH_STATEMENT "with_statement"
#define FUTURE_PRINT_FUNCTION "print_function"
#define FUTURE_UNICODE_LITERALS "unicode_literals"

struct _mod; /* Declare the existence of this type */
PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
					PyCompilerFlags *, PyArena *);
PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);


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