diff options
author | Armin Rigo <arigo@tunes.org> | 2012-06-05 16:35:35 +0200 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2012-06-05 16:35:35 +0200 |
commit | 19ac7a222741f047bce4ca48de6946b9212b2b98 (patch) | |
tree | be8f07b9fed71ca9cf602874fe1529cd14b74c80 /testing/test_function.py | |
parent | d0a4645f7dbadabf2b0ce7c9de7158a3f0ac6aed (diff) | |
download | cffi-19ac7a222741f047bce4ca48de6946b9212b2b98.tar.gz |
Rename the package from "ffi" to "cffi".
Use local imports inside the package; anyway it has no
chance to work on Python < 2.6 because pycparser doesn't.
Diffstat (limited to 'testing/test_function.py')
-rw-r--r-- | testing/test_function.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/test_function.py b/testing/test_function.py index e7b4e5f..05f1bb2 100644 --- a/testing/test_function.py +++ b/testing/test_function.py @@ -1,7 +1,7 @@ import py -from ffi import FFI +from cffi import FFI import math, os -from ffi.backend_ctypes import CTypesBackend +from cffi.backend_ctypes import CTypesBackend class FdWriteCapture(object): |