blob: a71aead1769057ebab010a584cc3cdeacc16577d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* src/pl/plpython/plpy_main.h
*/
#ifndef PLPY_MAIN_H
#define PLPY_MAIN_H
#include "plpy_procedure.h"
/* the interpreter's globals dict */
extern PyObject *PLy_interp_globals;
#endif /* PLPY_MAIN_H */
|