summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
94170b7)
Because _init is later assigned to in the function, new enough versions of
cython (
67bf84357feabe73612e2a9eef3e48a05e74d76f or so and later, apparently)
conclude that it's a local. Unfortunately, that means that the "if _init" is
referencing an undeclared variable. See also
http://codespeak.net/pipermail/cython-dev/2009-July/006396.html.
Signed-off-by: Alex Dehnert <adehnert@mit.edu>
return "[%s] %s" % (self.errno, self.strerror)
def pyafs_error(code):
return "[%s] %s" % (self.errno, self.strerror)
def pyafs_error(code):
if not _init:
initialize_ACFG_error_table()
initialize_KTC_error_table()
if not _init:
initialize_ACFG_error_table()
initialize_KTC_error_table()