~pythonregexp2.7/python/issue2636-09-01+10

« back to all changes in this revision

Viewing changes to Parser/intrcheck.c

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-22 21:39:45 UTC
  • mfrom: (39055.1.33 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080922213945-23717m5eiqpamcyn
Merged in changes from the Single-Loop Engine branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/* Check for interrupts */
3
3
 
4
4
#include "Python.h"
 
5
#include "pythread.h"
5
6
 
6
7
#ifdef QUICKWIN
7
8
 
172
173
{
173
174
#ifdef WITH_THREAD
174
175
        PyEval_ReInitThreads();
 
176
        PyThread_ReInitTLS();
175
177
#endif
176
178
}