equal
deleted
inserted
replaced
211 yield m |
211 yield m |
212 for m in 'cPickle', 'datetime': # in Python (not C) on PyPy |
212 for m in 'cPickle', 'datetime': # in Python (not C) on PyPy |
213 yield m |
213 yield m |
214 for m in ['cffi']: |
214 for m in ['cffi']: |
215 yield m |
215 yield m |
216 stdlib_prefixes = set([sys.prefix, sys.exec_prefix]) |
216 stdlib_prefixes = {sys.prefix, sys.exec_prefix} |
217 # We need to supplement the list of prefixes for the search to work |
217 # We need to supplement the list of prefixes for the search to work |
218 # when run from within a virtualenv. |
218 # when run from within a virtualenv. |
219 for mod in (BaseHTTPServer, zlib): |
219 for mod in (BaseHTTPServer, zlib): |
220 try: |
220 try: |
221 # Not all module objects have a __file__ attribute. |
221 # Not all module objects have a __file__ attribute. |