[pypy-svn] r19067 - pypy/dist/pypy/annotation

mwh at codespeak.net mwh at codespeak.net
Thu Oct 27 12:34:24 CEST 2005


Author: mwh
Date: Thu Oct 27 12:34:23 2005
New Revision: 19067

Modified:
   pypy/dist/pypy/annotation/bookkeeper.py
Log:
replace an 'import *' with a semi autogenerated replacement (woo!)


Modified: pypy/dist/pypy/annotation/bookkeeper.py
==============================================================================
--- pypy/dist/pypy/annotation/bookkeeper.py	(original)
+++ pypy/dist/pypy/annotation/bookkeeper.py	Thu Oct 27 12:34:23 2005
@@ -6,7 +6,12 @@
 import sys
 from types import FunctionType, ClassType, NoneType
 from pypy.objspace.flow.model import Constant
-from pypy.annotation.model import *
+from pypy.annotation.model import SomeString, SomeChar, SomeFloat, \
+     SomePtr, unionof, SomeInstance, SomeDict, SomeBuiltin, SomePBC, \
+     SomeInteger, SomeExternalObject, SomeOOInstance, TLS, SomeAddress, \
+     new_or_old_class, SomeUnicodeCodePoint, SomeOOStaticMeth, \
+     SomeLLADTMeth, SomeBool, SomeTuple, SomeOOClass, SomeImpossibleValue, \
+     SomeList, SomeObject
 from pypy.annotation.classdef import ClassDef, isclassdef
 from pypy.annotation.listdef import ListDef, MOST_GENERAL_LISTDEF
 from pypy.annotation.dictdef import DictDef, MOST_GENERAL_DICTDEF



More information about the Pypy-commit mailing list