Run [2024-11-20 12:27:00 UTC]: fail
running...
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 5, in __main__
Failed example:
from aligned_class_ext import *
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[0]>", line 1, in <module>
from aligned_class_ext import *
ImportError: DLL load failed while importing aligned_class_ext: The specified module could not be found.
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 9, in __main__
Failed example:
x = X(42, 16)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[1]>", line 1, in <module>
x = X(42, 16)
^
NameError: name 'X' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 10, in __main__
Failed example:
x_function(x)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[2]>", line 1, in <module>
x_function(x)
^^^^^^^^^^
NameError: name 'x_function' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 12, in __main__
Failed example:
f_function(x)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[3]>", line 1, in <module>
f_function(x)
^^^^^^^^^^
NameError: name 'f_function' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 17, in __main__
Failed example:
class MetaX(X.__class__):
def __new__(cls, *args):
return super(MetaX, cls).__new__(cls, *args)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[4]>", line 1, in <module>
class MetaX(X.__class__):
^
NameError: name 'X' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 20, in __main__
Failed example:
class XPlusMetatype(X):
__metaclass__ = MetaX
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[5]>", line 1, in <module>
class XPlusMetatype(X):
^
NameError: name 'X' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 22, in __main__
Failed example:
x = XPlusMetatype(42, 16)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[6]>", line 1, in <module>
x = XPlusMetatype(42, 16)
^^^^^^^^^^^^^
NameError: name 'XPlusMetatype' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 23, in __main__
Failed example:
x_function(x)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[7]>", line 1, in <module>
x_function(x)
^^^^^^^^^^
NameError: name 'x_function' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\aligned_class.py", line 25, in __main__
Failed example:
f_function(x)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[8]>", line 1, in <module>
f_function(x)
^^^^^^^^^^
NameError: name 'f_function' is not defined
**********************************************************************
1 items had failures:
9 of 9 in __main__
***Test Failed*** 9 failures.
EXIT STATUS: 9