Staging
v0.5.1
https://github.com/python/cpython
Revision aaa210e2fdc96030439bf694fae1994cac495565 authored by Senthil Kumaran on 19 February 2010, 07:39:41 UTC, committed by Senthil Kumaran on 19 February 2010, 07:39:41 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78234 | senthil.kumaran | 2010-02-19 13:02:48 +0530 (Fri, 19 Feb 2010) | 2 lines

  Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986
........
1 parent 7f898e3
Raw File
Tip revision: aaa210e2fdc96030439bf694fae1994cac495565 authored by Senthil Kumaran on 19 February 2010, 07:39:41 UTC
Merged revisions 78234 via svnmerge from
Tip revision: aaa210e
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

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