-afs/afs.c
-afs/afs.dep
+afs/_util.c
+afs/_util.dep
afs/_pts.c
afs/_pts.dep
afs/_acl.c
-from afs cimport *
-from afs import pyafs_error
+from afs._util cimport *
+from afs._util import pyafs_error
cdef extern from "afs/prs_fs.h":
enum:
-from afs cimport *
-from afs import pyafs_error
+from afs._util cimport *
+from afs._util import pyafs_error
def whichcell(char* path):
"""Determine which AFS cell a particular path is in."""
-from afs cimport *
-from afs import pyafs_error
+from afs._util cimport *
+from afs._util import pyafs_error
import re
cdef extern from "afs/ptuser.h":
requires=['Cython'],
packages=['afs', 'afs.tests'],
ext_modules=[
- PyAFSExtension("afs.afs"),
+ PyAFSExtension("afs._util"),
PyAFSExtension("afs._acl"),
PyAFSExtension("afs._fs"),
PyAFSExtension("afs._pts", libraries=['krb5']),