~inkscape.dev/inkscape-devlibs64/trunk

« back to all changes in this revision

Viewing changes to python/include/intrcheck.h

  • Committer: Eduard Braun
  • Date: 2016-10-22 16:51:19 UTC
  • Revision ID: eduard.braun2@gmx.de-20161022165119-9eosgy6lp8j1kzli
Update Python to version 2.7.12

Included modules:
  coverage 4.2
  lxml 3.6.4
  numpy 1.11.2
  scour 0.35
  six 1.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef Py_INTRCHECK_H
3
 
#define Py_INTRCHECK_H
4
 
#ifdef __cplusplus
5
 
extern "C" {
6
 
#endif
7
 
 
8
 
PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
9
 
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
10
 
PyAPI_FUNC(void) PyOS_AfterFork(void);
11
 
 
12
 
#ifdef __cplusplus
13
 
}
14
 
#endif
15
 
#endif /* !Py_INTRCHECK_H */
 
1
 
 
2
#ifndef Py_INTRCHECK_H
 
3
#define Py_INTRCHECK_H
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
 
9
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
 
10
PyAPI_FUNC(void) PyOS_AfterFork(void);
 
11
 
 
12
#ifdef __cplusplus
 
13
}
 
14
#endif
 
15
#endif /* !Py_INTRCHECK_H */