~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Include/pythonrun.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
PyAPI_FUNC(int) _PyFrame_Init(void);
197
197
PyAPI_FUNC(void) _PyFloat_Init(void);
198
198
PyAPI_FUNC(int) PyByteArray_Init(void);
 
199
PyAPI_FUNC(void) _PyRandom_Init(void);
199
200
#endif
200
201
 
201
202
/* Various internal finalizers */
248
249
PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
249
250
PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
250
251
 
 
252
/* Random */
 
253
PyAPI_FUNC(int) _PyOS_URandom (void *buffer, Py_ssize_t size);
251
254
 
252
255
#ifdef __cplusplus
253
256
}