Staging
v0.5.1
https://github.com/python/cpython
Revision e3e785180b2d591304d4c817da04131442951567 authored by Barry Warsaw on 01 May 2006, 03:21:25 UTC, committed by Barry Warsaw on 01 May 2006, 03:21:25 UTC
Patch #1464708 from William McVey: fixed handling of nested comments in mail
addresses.  E.g.

"Foo ((Foo Bar)) <foo@example.com>"

Fixes for both rfc822.py and email package.
1 parent dc74e34
Raw File
Tip revision: e3e785180b2d591304d4c817da04131442951567 authored by Barry Warsaw on 01 May 2006, 03:21:25 UTC
Back port from 2.4 branch:
Tip revision: e3e7851
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