Skip to content

Commit

Permalink
Move doublescript.internals.* to doublescript.
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Jul 9, 2017
1 parent 1753297 commit a42a139
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions doublescript/__init__.py
Expand Up @@ -10,11 +10,11 @@
# Alias the ``six`` module to ``seven``, for obvious reasons
sys.modules['seven'] = six

from doublescript.internals.const import Py_TPFLAGS # noqa
from doublescript.internals.utils import clone_type # noqa
from doublescript.internals.structs import PyTypeObject # noqa
from doublescript.internals.typeobject import override_type, type_set_bases # noqa
from doublescript.internals.asm_hooks import disable_peephole_optimizer # noqa
from doublescript.const import Py_TPFLAGS # noqa
from doublescript.utils import clone_type # noqa
from doublescript.structs import PyTypeObject # noqa
from doublescript.typeobject import override_type, type_set_bases # noqa
from doublescript.asm_hooks import disable_peephole_optimizer # noqa


try:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file removed doublescript/internals/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion doublescript/tests/test_typeobject.py
Expand Up @@ -2,7 +2,7 @@
import sys
import unittest

from doublescript.internals.typeobject import set_type, type_set_bases
from doublescript.typeobject import set_type, type_set_bases


def a_factory(set_b_base=False):
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion runtests.py
Expand Up @@ -2,7 +2,7 @@
import unittest
import sys

from doublescript.internals.asm_hooks import disable_peephole_optimizer
from doublescript.asm_hooks import disable_peephole_optimizer


sys.dont_write_bytecode = True
Expand Down

0 comments on commit a42a139

Please sign in to comment.