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

« back to all changes in this revision

Viewing changes to Modules/_tkinter.c

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-22 00:16:16 UTC
  • mfrom: (39022.1.34 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080922001616-p1wdip9lfp0zl5cu
Merged in changes from the Atomic Grouping / Possessive Qualifiers branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
490
490
   lists. SplitObj walks through a nested tuple, finding string objects that
491
491
   need to be split. */
492
492
 
493
 
PyObject *
 
493
static PyObject *
494
494
SplitObj(PyObject *arg)
495
495
{
496
496
        if (PyTuple_Check(arg)) {
1523
1523
        return 0;
1524
1524
}       
1525
1525
 
1526
 
void
 
1526
static void
1527
1527
var_perform(VarEvent *ev)
1528
1528
{
1529
1529
        *(ev->res) = ev->func(ev->self, ev->args, ev->flags);