Run [2024-11-19 21:29:18 UTC]: fail
running...
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 5, in __main__
Failed example:
from iterator_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 iterator_ext import *
ImportError: DLL load failed while importing iterator_ext: The specified module could not be found.
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 6, in __main__
Failed example:
from input_iterator 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__[1]>", line 1, in <module>
from input_iterator import *
ImportError: DLL load failed while importing input_iterator: The specified module could not be found.
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 7, in __main__
Failed example:
x = list_int()
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 = list_int()
^^^^^^^^
NameError: name 'list_int' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 8, in __main__
Failed example:
x.push_back(1)
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>
x.push_back(1)
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 9, in __main__
Failed example:
x.back()
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>
x.back()
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 11, in __main__
Failed example:
x.push_back(3)
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>
x.push_back(3)
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 12, in __main__
Failed example:
x.push_back(5)
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.push_back(5)
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 13, in __main__
Failed example:
for y in x:
print(y)
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>
for y in x:
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 18, in __main__
Failed example:
z = range(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>
z = range(x)
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 19, in __main__
Failed example:
for y in z:
print(y)
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__[9]>", line 1, in <module>
for y in z:
^
NameError: name 'z' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 28, in __main__
Failed example:
z2 = range2(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__[10]>", line 1, in <module>
z2 = range2(x)
^^^^^^
NameError: name 'range2' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 29, in __main__
Failed example:
for y in z2:
print(y)
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__[11]>", line 1, in <module>
for y in z2:
^^
NameError: name 'z2' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 35, in __main__
Failed example:
l2 = two_lists()
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__[12]>", line 1, in <module>
l2 = two_lists()
^^^^^^^^^
NameError: name 'two_lists' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 36, in __main__
Failed example:
for y in l2.primes:
print(y)
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__[13]>", line 1, in <module>
for y in l2.primes:
^^
NameError: name 'l2' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 44, in __main__
Failed example:
for y in l2.evens:
print(y)
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__[14]>", line 1, in <module>
for y in l2.evens:
^^
NameError: name 'l2' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 52, in __main__
Failed example:
ll = list_list()
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__[15]>", line 1, in <module>
ll = list_list()
^^^^^^^^^
NameError: name 'list_list' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 53, in __main__
Failed example:
ll.push_back(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__[16]>", line 1, in <module>
ll.push_back(x)
^^
NameError: name 'll' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 54, in __main__
Failed example:
x.push_back(7)
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__[17]>", line 1, in <module>
x.push_back(7)
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 55, in __main__
Failed example:
ll.push_back(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__[18]>", line 1, in <module>
ll.push_back(x)
^^
NameError: name 'll' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\iterator.py", line 56, in __main__
Failed example:
for a in ll: #doctest: +NORMALIZE_WHITESPACE
for b in a:
print(b, end=' ')
print('')
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__[19]>", line 1, in <module>
for a in ll: #doctest: +NORMALIZE_WHITESPACE
^^
NameError: name 'll' is not defined
**********************************************************************
1 items had failures:
20 of 20 in __main__
***Test Failed*** 20 failures.
EXIT STATUS: 20