python-3.6.zip added from Github

README.cosmo contains the necessary links.
This commit is contained in:
ahgamut 2021-08-08 09:38:33 +05:30 committed by Justine Tunney
parent 75fc601ff5
commit 0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,3 @@
import unittest
unittest.main('test.test_import')

View file

@ -0,0 +1,2 @@
"""Circular imports through direct, relative imports."""
from . import basic2

View file

@ -0,0 +1 @@
from . import basic

View file

@ -0,0 +1 @@
from . import basic, basic2

View file

@ -0,0 +1,3 @@
"""Test the binding of names when a circular import shares the same name as an
attribute."""
from .rebinding2 import util

View file

@ -0,0 +1,3 @@
from .subpkg import util
from . import rebinding
util = util.util

View file

@ -0,0 +1,2 @@
"""Circular import involving a sub-package."""
from .subpkg import subpackage2

View file

@ -0,0 +1,2 @@
#from .util import util
from .. import subpackage

View file

@ -0,0 +1,2 @@
def util():
pass

View file

@ -0,0 +1,2 @@
def util():
pass

View file

@ -0,0 +1,2 @@
import package.submodule
package.submodule

View file

@ -0,0 +1,3 @@
import sys
sys.modules.pop(__package__, None)
from . import submodule2