Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
3386
Dependencies/Python/Lib/test/test_import/__init__.py
vendored
Normal file
3386
Dependencies/Python/Lib/test/test_import/__init__.py
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
Dependencies/Python/Lib/test/test_import/__main__.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/__main__.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import unittest
|
||||
|
||||
unittest.main('test.test_import')
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/basic.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/basic.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
"""Circular imports through direct, relative imports."""
|
||||
from . import basic2
|
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/basic2.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/basic2.py
vendored
Normal file
@ -0,0 +1 @@
|
||||
from . import basic
|
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/binding.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/binding.py
vendored
Normal file
@ -0,0 +1 @@
|
||||
import test.test_import.data.circular_imports.binding2 as binding2
|
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/binding2.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/binding2.py
vendored
Normal file
@ -0,0 +1 @@
|
||||
import test.test_import.data.circular_imports.binding as binding
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/from_cycle1.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/from_cycle1.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
from .from_cycle2 import a
|
||||
b = 1
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/from_cycle2.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/from_cycle2.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
from .from_cycle1 import b
|
||||
a = 1
|
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/import_cycle.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/import_cycle.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import test.test_import.data.circular_imports.import_cycle as m
|
||||
|
||||
m.some_attribute
|
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/indirect.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/indirect.py
vendored
Normal file
@ -0,0 +1 @@
|
||||
from . import basic, basic2
|
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/rebinding.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/rebinding.py
vendored
Normal 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
|
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/rebinding2.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/rebinding2.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
from .subpkg import util
|
||||
from . import rebinding
|
||||
util = util.util
|
13
Dependencies/Python/Lib/test/test_import/data/circular_imports/singlephase.py
vendored
Normal file
13
Dependencies/Python/Lib/test/test_import/data/circular_imports/singlephase.py
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
"""Circular import involving a single-phase-init extension.
|
||||
|
||||
This module is imported from the _testsinglephase_circular module from
|
||||
_testsinglephase, and imports that module again.
|
||||
"""
|
||||
|
||||
import importlib
|
||||
import _testsinglephase
|
||||
from test.test_import import import_extension_from_file
|
||||
|
||||
name = '_testsinglephase_circular'
|
||||
filename = _testsinglephase.__file__
|
||||
mod = import_extension_from_file(name, filename)
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/source.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/source.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
from . import use
|
||||
spam = 1
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpackage.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpackage.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
"""Circular import involving a sub-package."""
|
||||
from .subpkg import subpackage2
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
#from .util import util
|
||||
from .. import subpackage
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg/util.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg/util.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
def util():
|
||||
pass
|
0
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/__init__.py
vendored
Normal file
0
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/__init__.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/__init__.py
vendored
Normal file
1
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/__init__.py
vendored
Normal file
@ -0,0 +1 @@
|
||||
import test.test_import.data.circular_imports.subpkg2.parent.child
|
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/child.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/child.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import test.test_import.data.circular_imports.subpkg2.parent
|
||||
|
||||
test.test_import.data.circular_imports.subpkg2.parent
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/use.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/use.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
from . import source
|
||||
source.spam
|
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/util.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/circular_imports/util.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
def util():
|
||||
pass
|
30
Dependencies/Python/Lib/test/test_import/data/double_const.py
vendored
Normal file
30
Dependencies/Python/Lib/test/test_import/data/double_const.py
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
from test.support import TestFailed
|
||||
|
||||
# A test for SF bug 422177: manifest float constants varied way too much in
|
||||
# precision depending on whether Python was loading a module for the first
|
||||
# time, or reloading it from a precompiled .pyc. The "expected" failure
|
||||
# mode is that when test_import imports this after all .pyc files have been
|
||||
# erased, it passes, but when test_import imports this from
|
||||
# double_const.pyc, it fails. This indicates a woeful loss of precision in
|
||||
# the marshal format for doubles. It's also possible that repr() doesn't
|
||||
# produce enough digits to get reasonable precision for this box.
|
||||
|
||||
PI = 3.14159265358979324
|
||||
TWOPI = 6.28318530717958648
|
||||
|
||||
PI_str = "3.14159265358979324"
|
||||
TWOPI_str = "6.28318530717958648"
|
||||
|
||||
# Verify that the double x is within a few bits of eval(x_str).
|
||||
def check_ok(x, x_str):
|
||||
assert x > 0.0
|
||||
x2 = eval(x_str)
|
||||
assert x2 > 0.0
|
||||
diff = abs(x - x2)
|
||||
# If diff is no larger than 3 ULP (wrt x2), then diff/8 is no larger
|
||||
# than 0.375 ULP, so adding diff/8 to x2 should have no effect.
|
||||
if x2 + (diff / 8.) != x2:
|
||||
raise TestFailed("Manifest const %s lost too much precision " % x_str)
|
||||
|
||||
check_ok(PI, PI_str)
|
||||
check_ok(TWOPI, TWOPI_str)
|
2
Dependencies/Python/Lib/test/test_import/data/package/__init__.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/package/__init__.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import package.submodule
|
||||
package.submodule
|
0
Dependencies/Python/Lib/test/test_import/data/package/submodule.py
vendored
Normal file
0
Dependencies/Python/Lib/test/test_import/data/package/submodule.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/package2/submodule1.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/package2/submodule1.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import sys
|
||||
sys.modules.pop(__package__, None)
|
||||
from . import submodule2
|
0
Dependencies/Python/Lib/test/test_import/data/package2/submodule2.py
vendored
Normal file
0
Dependencies/Python/Lib/test/test_import/data/package2/submodule2.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/package3/__init__.py
vendored
Normal file
2
Dependencies/Python/Lib/test/test_import/data/package3/__init__.py
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
"""Rebinding the package attribute after importing the module."""
|
||||
from .submodule import submodule
|
7
Dependencies/Python/Lib/test/test_import/data/package3/submodule.py
vendored
Normal file
7
Dependencies/Python/Lib/test/test_import/data/package3/submodule.py
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
attr = 'submodule'
|
||||
class A:
|
||||
attr = 'submodule'
|
||||
class submodule:
|
||||
attr = 'rebound'
|
||||
class B:
|
||||
attr = 'rebound'
|
5
Dependencies/Python/Lib/test/test_import/data/package4/__init__.py
vendored
Normal file
5
Dependencies/Python/Lib/test/test_import/data/package4/__init__.py
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
"""Binding the package attribute without importing the module."""
|
||||
class submodule:
|
||||
attr = 'origin'
|
||||
class B:
|
||||
attr = 'origin'
|
3
Dependencies/Python/Lib/test/test_import/data/package4/submodule.py
vendored
Normal file
3
Dependencies/Python/Lib/test/test_import/data/package4/submodule.py
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
attr = 'submodule'
|
||||
class A:
|
||||
attr = 'submodule'
|
12
Dependencies/Python/Lib/test/test_import/data/unwritable/__init__.py
vendored
Normal file
12
Dependencies/Python/Lib/test/test_import/data/unwritable/__init__.py
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import sys
|
||||
|
||||
class MyMod(object):
|
||||
__slots__ = ['__builtins__', '__cached__', '__doc__',
|
||||
'__file__', '__loader__', '__name__',
|
||||
'__package__', '__path__', '__spec__']
|
||||
def __init__(self):
|
||||
for attr in self.__slots__:
|
||||
setattr(self, attr, globals()[attr])
|
||||
|
||||
|
||||
sys.modules[__name__] = MyMod()
|
0
Dependencies/Python/Lib/test/test_import/data/unwritable/x.py
vendored
Normal file
0
Dependencies/Python/Lib/test/test_import/data/unwritable/x.py
vendored
Normal file
Reference in New Issue
Block a user