##// END OF EJS Templates
demandimport: add '_ctypes.pointer' to ignore list on PyPy...
Yuya Nishihara -
r30020:bf94fe55 default
parent child Browse files
Show More
@@ -287,6 +287,12 b' ignore = ['
287 'distutils.msvc9compiler',
287 'distutils.msvc9compiler',
288 ]
288 ]
289
289
290 if _pypy:
291 ignore.extend([
292 # _ctypes.pointer is shadowed by "from ... import pointer" (PyPy 5)
293 '_ctypes.pointer',
294 ])
295
290 def isenabled():
296 def isenabled():
291 return builtins.__import__ == _demandimport
297 return builtins.__import__ == _demandimport
292
298
General Comments 0
You need to be logged in to leave comments. Login now