-
Committer:
John Arbash Meinel
-
Date:
2009-08-17 16:11:22 UTC
-
mto:
This revision was merged to the branch mainline in
revision
4629.
-
Revision ID:
john@arbash-meinel.com-20090817161122-c0fvi0h2az6bo1h9
Switch some variables from Py_ssize_t to long
It turns out that long => PyInt is slightly faster than Py_ssize_t => PyInt
because interally PyInt holds a 'long' and in theory Py_ssize_t could
be bigger than a long.
For what we were doing, we never needed anything bigger than 'long'.