Skip to content

Instantly share code, notes, and snippets.

@ironpythonbot
Created September 28, 2013 01:14
Show Gist options
  • Save ironpythonbot/6737344 to your computer and use it in GitHub Desktop.
Save ironpythonbot/6737344 to your computer and use it in GitHub Desktop.
CodePlex Issue #20326 Plain Text Attachments
class Loader(object):
def load_module(self, fullname):
return None
class MetaImporter(object):
def find_module(self, fullname, path=None):
return Loader()
import sys
sys.meta_path.append(MetaImporter())
import re
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment