Skip to content

GH-141794: Limit size of generated machine code. - #142228

Merged
markshannon merged 2 commits into
python:mainfrom
markshannon:refactor-big-uops
Dec 3, 2025
Merged

GH-141794: Limit size of generated machine code.#142228
markshannon merged 2 commits into
python:mainfrom
markshannon:refactor-big-uops

Conversation

@markshannon

@markshannonmarkshannon commented Dec 3, 2025

Copy link
Copy Markdown
Member
  • Factor out bodies of the largest uops, to reduce jit code size.
  • Factor out common assert, also reducing jit code size.
  • Limit size of jitted code for a single executor to 1MB.

* Factor out bodies of the largest uops, to reduce jit code size.
* Factor out common assert, also reducing jit code size.
* Limit size of jitted code for a single executor to 1MB.

@diegorussodiegorusso left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left a couple of minor comments.

Comment threadPython/ceval.c Outdated
Comment threadPython/jit.c
Co-authored-by: Diego Russo <diego.russo@arm.com>
@markshannon
markshannon merged commit 62423c9 into python:mainDec 3, 2025
111 of 113 checks passed
@bedevere-bot

Copy link
Copy Markdown

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Refleaks 3.x (tier-1) has failed when building commit 62423c9.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/#/builders/320/builds/3388) and take a look at the build logs.
  4. Check if the failure is related to this commit (62423c9) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/#/builders/320/builds/3388

Failed tests:

  • test_import
  • test.test_multiprocessing_spawn.test_processes
  • test.test_multiprocessing_spawn.test_misc
  • test_descr
  • test.test_multiprocessing_forkserver.test_threads
  • test.test_concurrent_futures.test_shutdown
  • test_turtle
  • test.test_asyncio.test_futures
  • test_str
  • test.test_multiprocessing_fork.test_misc
  • test.test_asyncio.test_server
  • test_cmath
  • test_pdb
  • test_wsgiref
  • test_subprocess
  • test.test_asyncio.test_streams
  • test_generated_cases
  • test_httplib
  • test_pkgutil
  • test_types
  • test.test_asyncio.test_sendfile
  • test_urllib
  • test_profiling
  • test_clinic
  • test_collections
  • test_decimal
  • test_zoneinfo
  • test_zipfile
  • test_json
  • test_zipimport_support
  • test_tools
  • test_runpy
  • test.test_asyncio.test_subprocess
  • test_pprint
  • test_dataclasses
  • test_support
  • test_argparse
  • test_cmd_line_script
  • test.test_concurrent_futures.test_init
  • test_asdl_parser
  • test_email
  • test_embed
  • test_ctypes
  • test.test_io.test_general
  • test_platform
  • test_tempfile
  • test.test_asyncio.test_sslproto
  • test_long
  • test_shutil
  • test_xml_etree_c
  • test_zipapp
  • test__interpreters
  • test.test_asyncio.test_tasks
  • test_tarfile
  • test_htmlparser
  • test_http_cookies
  • test_threading
  • test_re
  • test_optparse
  • test_fcntl
  • test.test_asyncio.test_pep492
  • test_annotationlib
  • test_logging
  • test_urllib2_localnet
  • test_compileall
  • test_configparser
  • test_named_expressions
  • test_uuid
  • test_ordered_dict
  • test_graphlib
  • test_compiler_assemble
  • test_type_annotations
  • test_ast
  • test_sys
  • test_tomllib
  • test_base64
  • test_xml_etree
  • test_ssl
  • test_remote_pdb
  • test_docxmlrpc
  • test.test_gdb.test_backtrace
  • test_idle
  • test.test_asyncio.test_runners
  • test.test_asyncio.test_proactor_events
  • test.test_pydoc.test_pydoc
  • test_csv
  • test_xmlrpc
  • test_reprlib
  • test_capi
  • test.test_asyncio.test_sock_lowlevel
  • test_code
  • test_locale
  • test_exceptions
  • test.test_concurrent_futures.test_interpreter_pool
  • test.test_concurrent_futures.test_wait
  • test_robotparser
  • test_gettext
  • test_httpservers
  • test.test_asyncio.test_ssl
  • test_pickletools
  • test_typing
  • test.test_concurrent_futures.test_process_pool
  • test.test_asyncio.test_base_events
  • test_warnings
  • test.test_asyncio.test_eager_task_factory
  • test.test_gdb.test_misc
  • test___all__
  • test_copy
  • test.test_asyncio.test_taskgroups
  • test_urllib2net
  • test.test_asyncio.test_timeouts
  • test_sysconfig
  • test_traceback
  • test_dict
  • test.test_multiprocessing_fork.test_processes
  • test.test_concurrent_futures.test_deadlock
  • test_unittest
  • test_bytes
  • test_dictcomps
  • test_enum
  • test_urllib2
  • test_datetime
  • test.test_gdb.test_pretty_print
  • test.test_asyncio.test_events
  • test_crossinterp
  • test.test_multiprocessing_forkserver.test_processes
  • test_mimetypes
  • test_trace
  • test_strptime
  • test.test_multiprocessing_forkserver.test_misc
  • test_module
  • test_multiprocessing_main_handling
  • test.test_multiprocessing_spawn.test_threads
  • test.test_multiprocessing_spawn.test_manager
  • test__interpchannels
  • test_pyrepl
  • test_zipimport
  • test_ttk_textonly
  • test.test_asyncio.test_unix_events
  • test_doctest
  • test.test_asyncio.test_selector_events
  • test_grammar
  • test.test_multiprocessing_forkserver.test_manager
  • test_struct
  • test_plistlib
  • test_interpreters
  • test.test_concurrent_futures.test_as_completed

Test leaking resources:

  • test_general: memory blocks
  • test_interpreter_pool: memory blocks
  • test_xml_etree: memory blocks
  • test_multiprocessing_main_handling: memory blocks
  • test_descr: memory blocks
  • test_pretty_print: memory blocks
  • test_sock_lowlevel: memory blocks
  • test_decimal: memory blocks
  • test_doctest: memory blocks
  • test_zipimport: memory blocks
  • test_robotparser: memory blocks
  • test_futures: memory blocks
  • test_ssl: memory blocks
  • test_interpreter_pool: references
  • test_csv: memory blocks
  • test__interpchannels: memory blocks
  • test_base_events: memory blocks
  • test_http_cookies: memory blocks
  • test_base64: memory blocks
  • test_compileall: memory blocks
  • test_re: memory blocks
  • test_zoneinfo: memory blocks
  • test_streams: memory blocks
  • test_copy: memory blocks
  • test_urllib: memory blocks
  • test_pickletools: memory blocks
  • test_strptime: memory blocks
  • test_zipimport_support: memory blocks
  • test_urllib2net: memory blocks
  • test_unittest: memory blocks
  • test_profiling: memory blocks
  • test_pep492: memory blocks
  • test_as_completed: memory blocks
  • test_tarfile: memory blocks
  • test_interpreters: memory blocks
  • test_sysconfig: memory blocks
  • test_cmd_line_script: memory blocks
  • test_named_expressions: memory blocks
  • test_mimetypes: memory blocks
  • test_pdb: memory blocks
  • test_tarfile: references
  • test_collections: memory blocks
  • test_platform: memory blocks
  • test_cmath: memory blocks
  • test_docxmlrpc: memory blocks
  • test_eager_task_factory: memory blocks
  • test_locale: references
  • test_struct: memory blocks
  • test_str: memory blocks
  • test_zipapp: memory blocks
  • test_zipfile: memory blocks
  • test_json: memory blocks
  • test_pkgutil: memory blocks
  • test_httpservers: memory blocks
  • test_deadlock: memory blocks
  • test_backtrace: memory blocks
  • test_trace: memory blocks
  • test_crossinterp: memory blocks
  • test__interpreters: memory blocks
  • test_compileall: references
  • test_processes: memory blocks
  • test_types: memory blocks
  • test_pickletools: references
  • test_runners: memory blocks
  • test_enum: memory blocks
  • test_clinic: memory blocks
  • test_misc: memory blocks
  • test_subprocess: memory blocks
  • test_exceptions: memory blocks
  • test_gettext: memory blocks
  • test_uuid: memory blocks
  • test_logging: memory blocks
  • test_processes: references
  • test_remote_pdb: memory blocks
  • test_warnings: memory blocks
  • test_capi: memory blocks
  • test_graphlib: memory blocks
  • test_interpreters: references
  • test_traceback: memory blocks
  • test_shutil: memory blocks
  • test_module: memory blocks
  • test_runpy: memory blocks
  • test_ast: memory blocks
  • test_code: memory blocks
  • test_process_pool: memory blocks
  • test_generated_cases: memory blocks
  • test_tasks: memory blocks
  • test_ordered_dict: memory blocks
  • test_datetime: memory blocks
  • test_dataclasses: memory blocks
  • test_urllib2_localnet: memory blocks
  • test_grammar: memory blocks
  • test_tomllib: memory blocks
  • test_wsgiref: memory blocks
  • test_idle: memory blocks
  • test_pprint: memory blocks
  • test_optparse: memory blocks
  • test_manager: memory blocks
  • test_email: memory blocks
  • test_sslproto: memory blocks
  • test_long: memory blocks
  • test_plistlib: memory blocks
  • test_xmlrpc: memory blocks
  • test_embed: memory blocks
  • test_events: memory blocks
  • test_unix_events: memory blocks
  • test_selector_events: memory blocks
  • test_taskgroups: memory blocks
  • test_sys: memory blocks
  • test_turtle: memory blocks
  • test_argparse: memory blocks
  • test_shutdown: memory blocks
  • test_dictcomps: memory blocks
  • test_sendfile: memory blocks
  • test_fcntl: memory blocks
  • test_typing: memory blocks
  • test_configparser: memory blocks
  • test_import: memory blocks
  • test_annotationlib: memory blocks
  • test_threading: memory blocks
  • test_asdl_parser: memory blocks
  • test_reprlib: memory blocks
  • test_compiler_assemble: memory blocks
  • test_httplib: memory blocks
  • test_htmlparser: memory blocks
  • test_server: memory blocks
  • test_warnings: references
  • test_init: memory blocks
  • test_ttk_textonly: memory blocks
  • test_type_annotations: memory blocks
  • test_support: memory blocks
  • test_process_pool: references
  • test_pyrepl: memory blocks
  • test_dict: memory blocks
  • test_bytes: memory blocks
  • test_proactor_events: memory blocks
  • test_timeouts: memory blocks
  • test_urllib2: memory blocks
  • test___all__: memory blocks
  • test_threads: memory blocks
  • test_tools: memory blocks
  • test_tempfile: memory blocks
  • test_idle: references
  • test_wait: memory blocks
  • test_ctypes: memory blocks
  • test_manager: references
  • test_xml_etree_c: memory blocks
  • test_pydoc: memory blocks
  • test_locale: memory blocks

Summary of the results of the build (if available):

==

Click to see traceback logs
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 42360)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 42360)
k
TracebackErrorCaretTests.test_caret_for_subscript_multiline) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_CIPHER] no shared cipher (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 57608)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 57608)
k
TracebackLegacyErrorCaretTests.test_basic_caret) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 41668)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 41668)
connection timeout TimeoutError('timed out')
k
TracebackErrorCaretTests.test_memory_error) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_with_spaces_and_parenthesis) ... ok
TracebackCases.test_format_exception_group_multiline_messages) ... ok
TracebackLegacyErrorCaretTests.test_memory_error) ... ok
Traceback (most recent call last):
ValueError: line 4 of the docstring for some_test has inconsistent leading whitespace: 'indentation'
k
Trying:
docstring =r'''>>>print(('bad indentation',
...2))
('bad', 'indentation')
'''
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 2 of the docstring for some_test has inconsistent leading whitespace: '... 2))'
k
Trying:
docstring ='>>>print(1)\n1'
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 1 of the docstring for some_test lacks blank after >>>: '>>>print(1)'
k
Trying:
docstring ='>>> if 1:\n...print(1)\n1'
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 2 of the docstring for some_test lacks blank after ...: '...print(1)'
k
Trying:
docstring ='''>>>print1212'''
Expecting nothing
k
Trying:
test = parser.get_doctest(docstring, globs, 'some_test',
'some_test', 20)
Expecting nothing
k
Trying:
same_test = parser.get_doctest(docstring, globs, 'some_test',
'some_test', 20)
Expecting nothing
k
Trying:
test == same_test
Expecting:
True
k
Trying:
test != same_test
Expecting:
False
k
Trying:
hash(test) ==hash(same_test)
Expecting:
True
k
Trying:
docstring ='''>>>print4242'''
Expecting nothing
k
Trying:
other_test = parser.get_doctest(docstring, globs, 'other_test',
'other_file', 10)
Expecting nothing
k
Trying:
test == other_test
Expecting:
False
k
Trying:
test != other_test
Expecting:
True
k
Trying:
test < other_test
Expecting:
False
k
Trying:
other_test < test
Expecting:
True
k
Trying:
no_lineno = parser.get_doctest(docstring, globs, 'some_test',
'some_test', None)
Expecting nothing
k
Trying:
test.lineno isNoneExpecting:
False
k
Trying:
no_lineno.lineno isNoneExpecting:
True
k
Trying:
test < no_lineno
Expecting:
False
k
Trying:
no_lineno < test
Expecting:
True
k
Trying:
DocTestCase = doctest.DocTestCase
Expecting nothing
k
Trying:
test_case = DocTestCase(test)
Expecting nothing
k
Trying:
same_test_case = DocTestCase(same_test)
Expecting nothing
k
Trying:
other_test_case = DocTestCase(other_test)
Expecting nothing
k
Trying:
test_case == same_test_case
Expecting:
True
k
Trying:
test_case != same_test_case
Expecting:
False
k
Trying:
hash(test_case) ==hash(same_test_case)
Expecting:
True
k
Trying:
test == other_test_case
Expecting:
False
k
Trying:
test != other_test_case
Expecting:
True
k
doctest (test_zipped_doctest) ... 46 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestParser
Trying:
s ='''>>> x, y =2, 3# no output expected>>>if1:
...print(x)
...print(y)
23
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
TracebackLegacyErrorCaretTests.test_byte_offset_wide_chars_subscript) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_call_with_spaces_and_parenthesis) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_two_char) ... ok
TracebackErrorCaretTests.test_caret_for_subscript_with_spaces_and_parenthesis) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
connection timeout TimeoutError('timed out')
k
Traceback (most recent call last):
ZeroDivisionError: division by zero
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
'''>>> x =12>>>print('pre-exception output', x//0)
pre-exception output
Traceback (most recent call last):
ZeroDivisionError: division by zero
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 4, in f
Failed example:
print('pre-exception output', x//0)
Exception raised:
...ZeroDivisionError: division by zero
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>raiseValueError('multi\nline\nmessage')
Traceback (most recent call last):
ValueError: multi
line
message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
deff(x):
r'''>>>raiseValueError('message')
Traceback (most recent call last):
ValueError: wrong message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
raiseValueError('message')
Expected:
Traceback (most recent call last):
ValueError: wrong message
Got:
Traceback (most recent call last):
...ValueError: message
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
ValueError: wrong message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message')
Traceback (most recent call last):
HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 4, in f
Failed example:
raise HTTPException('message')
Expected:
Traceback (most recent call last):
HTTPException: message
Got:
Traceback (most recent call last):
...
http.client.HTTPException: message
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message')
Traceback (most recent call last):
http.client.HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
TypeError: wrong type'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Expected:
Traceback (most recent call last):
TypeError: wrong type
Got:
Traceback (most recent call last):
...ValueError: message
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException:
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>1//00'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
1//0Exception raised:
Traceback (most recent call last):
...ZeroDivisionError: division by zero
TestResults(failed=1, attempted=1)
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 43 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.option_directives
Trying:
import _colorize
Expecting nothing
k
Trying:
save_colorize = _colorize.COLORIZE
Expecting nothing
k
Trying:
_colorize.COLORIZE=False
Expecting nothing
k
Trying:
deff(x): r'''>>>print(list(range(10))) # should fail: no ellipsis
[0, 1, ..., 9]
TracebackTests.test_broken_from) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 38962)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 38962)
k
TracebackCases.test_format_exception_group_without_show_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 50306)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 43118)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (test.test_zipimport.DeflateCompressedZipImportTestCase.testTraceback) ... ok
TracebackFormat.test_unhashable) ... ok
TracebackErrorCaretTests.test_decorator_application_lineno_correct) ... ok
TracebackLegacyErrorCaretTests.test_caret_exception_group) ... ok
TracebackException.test_traceback_header) ... ok
TracebackTests.test_nonexistent_module) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_CIPHER] no shared cipher (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackLegacyErrorCaretTests.test_caret_for_subscript_with_spaces_and_parenthesis) ... ok
TracebackFormat.test_traceback_format) ... ok
TracebackLegacyErrorCaretTests.test_multiline_method_call_a) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 56982)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 51312)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (test.test_zipimport.UncompressedZipImportTestCase.testTraceback) ... ok
TracebackLegacyErrorCaretTests.test_many_lines) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SUITABLE_KEY_SHARE] no suitable key share (_ssl.c:1108)
k
TracebackCases.test_format_exception_group_nested_with_notes) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline_two_char) ... ok
TracebackException.test_cause) ... ok
TracebackException.test_no_save_exc_type) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 40494)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 40494)
k
TracebackCases.test_format_exception_group_syntax_error) ... ok
TracebackLegacyErrorCaretTests.test_decorator_application_lineno_correct) ... ok
TracebackLegacyErrorCaretTests.test_many_lines_binary_op) ... ok
TracebackFormat.test_stack_format) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 32820)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 32820)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
connection timeout TimeoutError('timed out')
server: new connection from ('127.0.0.1', 48004)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 60898)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackFormat.test_format_stack) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_multiline) ... ok
TracebackException.test_from_exception) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 46570)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 46570)
k
TracebackLegacyErrorCaretTests.test_caret_for_subscript_multiline) ... ok
TracebackException_ExceptionGroups.test_comparison) ... ok
TracebackException.test_comparison_equivalent_exceptions_are_equal) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators) ... ok
TracebackCases.test_format_exception_group_with_cause) ... ok
TracebackCases.test_print_last) ... ok
TracebackErrorCaretTests.test_line_with_unicode) ... ok
TracebackException.test_context) ... ok
TracebackCases.test_format_exception_group_explicit_class) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 46650)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 50656)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackErrorCaretTests.test_byte_offset_with_wide_characters_middle) ... ok
TracebackFormat.test_exception_group_deep_recursion_traceback) ... ok
TracebackLegacyErrorCaretTests.test_caret_multiline_expression_bin_op) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackLegacyErrorCaretTests.test_multiline_method_call_b) ... ok
TracebackErrorCaretTests.test_caret_exception_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 48222)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 48222)
k
TracebackErrorCaretTests.test_caret_for_binary_operators_with_spaces_and_parenthesis) ... ok
TracebackErrorCaretTests.test_caret_multiline_expression) ... ok
TracebackTests.test_import_bug) ... ok
TracebackTests.test_exec_failure_nested) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 55862)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 55862)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline_with_unicode) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_with_wide_characters_term_highlight) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 54984)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 54984)
k
Traceback.test_colorized_traceback_from_exception_group) ... ok
TracebackLegacyErrorCaretTests.test_caret_multiline_expression_syntax_error) ... ok
TracebackCases.test_format_exception_group) ... ok
TracebackException.test_limit) ... ok
TracebackException_ExceptionGroups.test_exception_group_format) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_with_emojis_term_highlight) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 48132)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 48132)
k
TracebackException_ExceptionGroups.test_exception_group_format_exception_only) ... ok
TracebackErrorCaretTests.test_basic_caret) ... ok
TracebackException.test_lookup_lines) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 58362)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 58362)
k
TracebackLegacyErrorCaretTests.test_caret_for_subscript_unicode) ... ok
TracebackException.test_no_refs_to_exception_and_traceback_objects) ... ok
TracebackErrorCaretTests.test_multiline_method_call_a) ... ok
TracebackException.test_locals) ... ok
TracebackFormat.test_print_exception_bad_type_capi) ... ok
TracebackFormat.test_recursive_traceback) ... ok
TracebackErrorCaretTests.test_anchors_for_simple_assign_statements_are_elided) ... ok
TracebackCases.test_recursion_error_during_traceback) ... ok
TracebackCases.test_format_exception_group_syntax_error_with_custom_values) ... ok
TracebackErrorCaretTests.test_caret_for_call_multiline) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_call_unicode) ... ok
TracebackErrorCaretTests.test_byte_offset_wide_chars_subscript) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 41308)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 41308)
k
TracebackErrorCaretTests.test_caret_for_call_unicode) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_two_char) ... ok
TracebackCases.test_print_exception_exc) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 59934)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 59934)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 43146)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 50210)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackCases.test_bad_indentation) ... ok
TracebackException_ExceptionGroups.test_exception_group_construction) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_subscript) ... ok
TracebackErrorCaretTests.test_byte_offset_with_wide_characters_term_highlight) ... ok
TracebackErrorCaretTests.test_caret_in_type_annotation) ... ok
TracebackErrorCaretTests.test_caret_for_call) ... ok
TracebackErrorCaretTests.test_many_lines_binary_op) ... ok
TracebackErrorCaretTests.test_anchors_for_simple_return_statements_are_elided) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_with_unicode) ... ok
TracebackException_ExceptionGroups.test_exception_group_format_exception_onlyi_recursive) ... ok
TracebackException.test_dont_swallow_cause_or_context_of_falsey_exception) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/process.py", line 320, in _bootstrapself.run()
~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/process.py", line 108, in runself._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/_test_multiprocessing.py", line 525, in _sleep_some_event
time.sleep(100)
~~~~~~~~~~^^^^^
KeyboardInterrupt
k
TracebackTests.test_unencodable_filename) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 38230)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 45196)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
connection timeout TimeoutError('timed out')
server: new connection from ('127.0.0.1', 49950)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 57892)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackCases.test_format_exception_group_multiline2_messages) ... ok
TracebackLegacyErrorCaretTests.test_traceback_very_long_line) ... ok
Traceback.test_colorized_traceback) ... ok
TracebackException.test_print) ... ok
TracebackFormat.test_traceback_format_with_cleared_frames) ... ok
TracebackCases.test_format_exception_only_bad__str__) ... ok
TracebackLegacyErrorCaretTests.test_anchors_for_simple_assign_statements_are_elided) ... ok
TracebackErrorCaretTests.test_caret_for_subscript_unicode) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_SIGNATURE_ALGORITHMS] no shared signature algorithms (_ssl.c:1108)
k
TracebackErrorCaretTests.test_many_lines) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLEOFError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1108)
k
TracebackLegacyErrorCaretTests.test_anchors_for_simple_return_statements_are_elided) ... ok
TracebackException.test_compact_no_cause) ... ok
TracebackTests.test_broken_parent) ... ok
TracebackCases.test_format_exception_group_with_note) ... ok
TracebackAttr (test.test_exceptions.ExceptionTests.testNoneClearsTracebackAttr) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 58118), raddr=('127.0.0.1', 36407)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 55054)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 55054)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 52516), raddr=('127.0.0.1', 49243)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
connection timeout TimeoutError('timed out')
k
TracebackTests.test_exec_failure) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_with_unicode) ... ok
TracebackErrorCaretTests.test_multiline_method_call_b) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 44616)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 44616)
k
TracebackLegacyErrorCaretTests.test_multiline_method_call_c) ... ok
TracebackCases.test_format_base_exception_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1108)
TracebackException_ExceptionGroups.test_max_group_depth) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 44822)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 60758)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackCases.test_base_exception) ... ok
Traceback.test_colorized_syntax_error) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
k
TracebackErrorCaretTests.test_caret_multiline_expression_syntax_error) ... ok
TracebackErrorCaretTests.test_byte_offset_multiline) ... ok
TracebackLegacyErrorCaretTests.test_secondary_caret_not_elided) ... ok
TracebackCases.test_print_traceback_at_exit) ... ok
TracebackCases.test_caret) ... ok
Traceback (test.test_zipimport.ZStdCompressedZipImportTestCase.testTraceback) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 34474)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 34474)
k
TracebackCases.test_extract_stack) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 45926)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 54558)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
connection timeout TimeoutError('timed out')
connection timeout TimeoutError('timed out')
k
TracebackLegacyErrorCaretTests.test_caret_for_call_multiline) ... ok
TracebackLegacyErrorCaretTests.test_many_lines_no_caret) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
k
TracebackErrorCaretTests.test_secondary_caret_not_elided) ... ok
TracebackCases.test_signatures) ... ok
TracebackTests.test_syntax_error) ... ok
TracebackException.test_no_locals) ... ok
Traceback (test.test_exceptions.ExceptionTests.testWithTraceback) ... ok
TracebackLegacyErrorCaretTests.test_specialization_variations) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/process.py", line 320, in _bootstrapself.run()
~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/process.py", line 108, in runself._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/_test_multiprocessing.py", line 524, in _sleep_some_event
event.set()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 349, in setwithself._cond:
^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 247, in __exit__returnself._lock.__exit__(*args)
~~~~~~~~~~~~~~~~~~~^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/multiprocessing/synchronize.py", line 100, in __exit__returnself._semlock.__exit__(*args)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^
KeyboardInterrupt
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 34050)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 34050)
connection timeout TimeoutError('timed out')
k
TracebackErrorCaretTests.test_wide_characters_unicode_with_problematic_byte_offset) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline_with_unicode) ... ok
TracebackCases.test_encoded_file) ... ok
TracebackErrorCaretTests.test_caret_multiline_expression_bin_op) ... ok
TracebackCases.test_print_exception) ... ok
TracebackTests.test_broken_parent_from) ... ok
TracebackCases.test_nocaret) ... ok
TracebackException.test_comparison_basic) ... ok
TracebackException.test_unhashable) ... ok
TracebackTests.test_nonexistent_module_nested) ... ok
TracebackErrorCaretTests.test_traceback_very_long_line) ... ok
TracebackException.test_smoke_builtin) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 50148)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 50148)
k
TracebackCases.test_exception_is_None) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline_two_char) ... ok
TracebackCases.test_format_exception_group_multiple_exceptions) ... ok
TracebackErrorCaretTests.test_multiline_method_call_c) ... ok
TracebackCases.test_no_caret_with_no_debug_ranges_flag) ... ok
Traceback.test_colorized_traceback_is_the_default) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 41706)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 41706)
k
TracebackErrorCaretTests.test_byte_offset_with_emojis_term_highlight) ... ok
TracebackCases.test_no_caret_with_no_debug_ranges_flag_python_traceback) ... ok
TracebackException.test_smoke_user_exception) ... ok
TracebackErrorCaretTests.test_many_lines_no_caret) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 55600)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
connection timeout TimeoutError('timed out')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SUITABLE_KEY_SHARE] no suitable key share (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackCases.test_clear) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline) ... ok
TracebackCases.test_format_exception_group_with_tracebacks) ... ok
TracebackException.test_comparison_params_variations) ... ok
TracebackException.test_long_context_chain) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 32874)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 32874)
k
TracebackErrorCaretTests.test_caret_for_subscript) ... ok
TracebackErrorCaretTests.test_caret_for_call_with_spaces_and_parenthesis) ... ok
TracebackLegacyErrorCaretTests.test_caret_multiline_expression) ... ok
TracebackLegacyErrorCaretTests.test_wide_characters_unicode_with_problematic_byte_offset) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline) ... ok
TracebackException_ExceptionGroups.test_max_group_width) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_with_wide_characters_middle) ... ok
TracebackLegacyErrorCaretTests.test_line_with_unicode) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 33082)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 47182)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackFormat.test_print_exception_bad_type_python) ... ok
TracebackCases.test_format_exception_exc) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 44162)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 44162)
connection timeout TimeoutError('timed out')
k
TracebackFormat.test_exception_group_deep_recursion_capi) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 44160)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 33426)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackException_ExceptionGroups.test_dont_swallow_subexceptions_of_falsey_exceptiongroup) ... ok
TracebackCases.test_format_exception_only_exc) ... ok
TracebackTests.test_broken_submodule) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 56748)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 56748)
k
TracebackLegacyErrorCaretTests.test_caret_for_call) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 33328)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 52582)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
connection timeout TimeoutError('timed out')
k
TracebackLegacyErrorCaretTests.test_traceback_specialization_with_syntax_error) ... ok
TracebackLegacyErrorCaretTests.test_caret_in_type_annotation) ... ok
Traceback (test.test_exceptions.ExceptionTests.testInvalidTraceback) ... ok
TracebackErrorCaretTests.test_traceback_specialization_with_syntax_error) ... ok
Traceback (most recent call last):
ValueError: line 1 of the doctest for s has an invalid option: '+BADOPTION'
k
Trying:
s ='>>> print(12) #doctest: ELLIPSIS'
Expecting nothing
k
Trying:
test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 1 of the doctest for s has an invalid option: 'ELLIPSIS'
k
Trying:
s ='>>> # doctest: +ELLIPSIS'
Expecting nothing
k
Trying:
test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 0 of the doctest for s has an option directive on a line with no example: '# doctest: +ELLIPSIS'
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 37 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.optionflags
Trying:
import _colorize
Expecting nothing
k
Trying:
save_colorize = _colorize.COLORIZE
Expecting nothing
k
Trying:
_colorize.COLORIZE=False
Expecting nothing
k
Trying:
deff(x):
'>>> True\n1\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.DONT_ACCEPT_TRUE_FOR_1
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
True
Expected:
1
Got:
True
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
'>>> print("a\\n\\nb")\na\n<BLANKLINE>\nb\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.DONT_ACCEPT_BLANKLINE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
print("a\n\nb")
Expected:
a
<BLANKLINE>
b
Got:
a
<BLANKLINE>
b
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
'\n>>> print(1, 2, 3)\n 1 2\n 3'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print(1, 2, 3)
Expected:
123
Got:
123
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.NORMALIZE_WHITESPACE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
print(list(range(20))) #doctest: +NORMALIZE_WHITESPACEExpecting:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
k
Trying:
deff(x):
'>>> print(list(range(15)))\n[0, 1, 2, ..., 14]\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
print(list(range(15)))
Expected:
[0, 1, 2, ..., 14]
Got:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.ELLIPSIS
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
if1:
for i inrange(100):
print(i**2, end='') #doctest: +ELLIPSISprint('!')
Expecting:
01...4...9 16...364964...9801 !
k
Trying:
if1: #doctest: +ELLIPSISfor i inrange(20):
print(i, end='')
print(20)
Expecting:
012...1...2...0
k
Trying:
print(list(range(20))) # doctest:+ELLIPSISExpecting:
[0, 1, ..., 18, 19]
k
Trying:
print(list(range(20))) # doctest: +ELLIPSIS# doctest: +NORMALIZE_WHITESPACEExpecting:
[0, 1, ..., 18, 19]
k
Trying:
import random
Expecting nothing
k
Trying:
deff(x):
r'''>>>print('\n'.join('abcdefg'))
a
B
c
d
f
g
h
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Expected:
a
B
c
d
f
g
h
Got:
a
b
c
d
e
f
g
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_UDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Differences (unified diff with-expected +actual):
@@-1,7+1,7@@
a
-B
+b
c
d
+e
f
g
-h
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_CDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Differences (context diff with expected followed by actual):
******************1,7****
a
! B
c
d
f
g
- h
---1,7----
a
! b
c
d
+ e
f
g
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>print("a b c d e f g h i j k l m")
a b c d e f g h i j k 1 m
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_NDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print("a b c d e f g h i j k l m")
Differences (ndiff with-expected +actual):
- a b c d e f g h i j k 1 m
?^+ a b c d e f g h i j k l m
?+++^
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>print(1) # first success1>>>print(2) # first failure200>>>print(3) # second failure300>>>print(4) # second success4>>>print(5) # third failure500'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=3, attempted=5)
k
Trying:
doctest.DocTestRunner(verbose=True, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
Trying:
print(1) # first success
Expecting:
1
ok
Trying:
print(2) # first failure
Expecting:
200**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=3, attempted=5)
k
Trying:
flags = doctest.FAIL_FAST
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=1, attempted=2)
k
Trying:
flags = doctest.FAIL_FAST| doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>print(1) # first success1>>>raiseValueError(2) # first failure200>>>print(3) # second failure300>>>print(4) # second success4>>>print(5) # third failure500'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
raiseValueError(2) # first failureException raised:
...ValueError: 2
TestResults(failed=3, attempted=5)
k
Trying:
flags = doctest.FAIL_FAST
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
raiseValueError(2) # first failureException raised:
...ValueError: 2
TestResults(failed=1, attempted=2)
k
Trying:
unlikely ="UNLIKELY_OPTION_NAME"
Expecting nothing
k
Trying:
unlikely in doctest.OPTIONFLAGS_BY_NAMEExpecting:
False
k
Trying:
new_flag_value = doctest.register_optionflag(unlikely)
Expecting nothing
k
Trying:
unlikely in doctest.OPTIONFLAGS_BY_NAMEExpecting:
True
k
Trying:
redundant_flag_value = doctest.register_optionflag(unlikely)
Expecting nothing
k
Trying:
redundant_flag_value == new_flag_value
Expecting:
True
k
Trying:
del doctest.OPTIONFLAGS_BY_NAME[unlikely]
Expecting nothing
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 73 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.verbose_flag
Trying:
deff(x):
'''>>> x =12>>>print(x)
12>>> x//26'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=True).run(test)
Expecting:
Trying:
x =12
Expecting nothing
ok
Trying:
print(x)
Expecting:
12
ok
Trying:
x//2
Expecting:
6
ok
TestResults(failed=0, attempted=3)
k
Trying:
old_argv = sys.argv
Expecting nothing
k
Trying:
sys.argv = ['test']
Expecting nothing
k
Trying:
doctest.DocTestRunner().run(test)
Expecting:
TestResults(failed=0, attempted=3)
k
Trying:
sys.argv = ['test', '-v']
Expecting nothing
k
Trying:
doctest.DocTestRunner().run(test)
Expecting:
Trying:
x =12
Expecting nothing
ok
Trying:
print(x)
Expecting:
12
ok
Trying:
x//2
Expecting:
6
ok
TestResults(failed=0, attempted=3)
k
Trying:
sys.argv = old_argv
Expecting nothing
k
doctest (test_zipped_doctest) ... 9 tests with zero failures
Finding tests in test_zipped_doctest.test_Example
Trying:
example = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
(example.source, example.want, example.exc_msg,
example.lineno, example.indent, example.options)
Expecting:
('print(1)\n', '1\n', None, 0, 0, {})
k
Trying:
exc_msg ='IndexError: pop from an empty list'
Expecting nothing
k
Trying:
example = doctest.Example('[].pop()', '', exc_msg,
lineno=5, indent=4,
options={doctest.ELLIPSIS: True})
Expecting nothing
k
Trying:
(example.source, example.want, example.exc_msg,
example.lineno, example.indent, example.options)
Expecting:
('[].pop()\n', '', 'IndexError: pop from an empty list\n', 5, 4, {8: True})
k
Trying:
e = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1)\n', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1);\nprint(2)\n', '1\n2\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1);\nprint(2)\n', '1\n2\n')
k
Trying:
e = doctest.Example('print(1);\nprint(2)', '1\n2\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1);\nprint(2)\n', '1\n2\n')
k
Trying:
e = doctest.Example('', '')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('\n', '')
k
Trying:
e = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1)', '1')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print', '')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print\n', '')
k
Trying:
exc_msg ='IndexError: pop from an empty list'
Expecting nothing
k
Trying:
e = doctest.Example('[].pop()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'IndexError: pop from an empty list\n'
k
Trying:
exc_msg ='IndexError: pop from an empty list\n'
Expecting nothing
k
Trying:
e = doctest.Example('[].pop()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'IndexError: pop from an empty list\n'
k
Trying:
exc_msg ='ValueError: 1\n 2'
Expecting nothing
k
Trying:
e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'ValueError: 1\n 2\n'
k
Trying:
exc_msg ='ValueError: 1\n 2\n'
Expecting nothing
k
Trying:
e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'ValueError: 1\n 2\n'
k
Trying:
exc_msg =''
Expecting nothing
k
Trying:
e = doctest.Example('raise X()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'\n'
k
Trying:
example = doctest.Example('print 1', '1\n')
Expecting nothing
k
Trying:
same_example = doctest.Example('print 1', '1\n')
Expecting nothing
k
Trying:
other_example = doctest.Example('print 42', '42\n')
Expecting nothing
k
Trying:
example == same_example
Expecting:
True
k
Trying:
example != same_example
Expecting:
False
k
Trying:
hash(example) ==hash(same_example)
Expecting:
True
k
Trying:
example == other_example
Expecting:
False
k
Trying:
example != other_example
Expecting:
True
k
doctest (test_zipped_doctest) ... 44 tests with zero failures
Finding tests in test_zipped_doctest.test_debug
Trying:
s ='''>>> x =12>>>print(x)
12'''
Expecting nothing
k
Trying:
from test.support.pty_helper import FakeInput
Expecting nothing
k
Trying:
real_stdin = sys.stdin
Expecting nothing
k
Trying:
sys.stdin = FakeInput(['next', 'print(x)', 'continue'])
Expecting nothing
k
Trying:
try: doctest.debug_src(s)
finally: sys.stdin = real_stdin
Expecting:
><string>(1)<module>()
(Pdb) next12--Return--><string>(1)<module>()->None
(Pdb) print(x)
12
(Pdb) continue
k
doctest (test_zipped_doctest) ... 5 tests with zero failures
Finding tests in test_zipped_doctest.test_testsource
Trying:
import test_zipped_doctest as test_doctest
Expecting nothing
k
Trying:
name ='test_zipped_doctest.sample_func'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
# Blah blah#print(sample_func(22))
# Expected:## 44## Yee ha!<BLANKLINE>
k
Trying:
name ='test_zipped_doctest.SampleNewStyleClass'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
print('1\n2\n3')
# Expected:## 1## 2## 3<BLANKLINE>
k
Trying:
name ='test_zipped_doctest.SampleClass.a_classmethod'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
print(SampleClass.a_classmethod(10))
# Expected:## 12print(SampleClass(0).a_classmethod(10))
# Expected:## 12<BLANKLINE>
k
doctest (test_zipped_doctest) ... 7 tests with zero failures
Finding tests in test_zipped_doctest.test_trailing_space_in_test
Trying:
x, y ='foo', ''
Expecting nothing
k
Trying:
print(x, y)
Expecting:
foo k
doctest (test_zipped_doctest) ... 2 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestSuite
Trying:
import unittest
Expecting nothing
k
Trying:
import sample_zipped_doctest
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite(sample_zipped_doctest)
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
for tst, _ in result.failures:
print(tst)
Expecting:
bad (sample_zipped_doctest.__test__) [0]
foo (sample_zipped_doctest) [0]
k
Trying:
for tst, _ in result.errors:
print(tst)
Expecting:
test_silly_setup (sample_zipped_doctest) [1]
y_is_one (sample_zipped_doctest) [0]
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest')
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_doctests')
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_docstrings')
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_skip')
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=6 errors=0 failures=2>
k
Trying:
len(result.skipped)
Expecting:
7
k
Trying:
for tst, _ in result.skipped:
print(tst)
Expecting:
double_skip (sample_zipped_doctest_skip) [0]
double_skip (sample_zipped_doctest_skip) [1]
double_skip (sample_zipped_doctest_skip)
partial_skip_fail (sample_zipped_doctest_skip) [0]
partial_skip_pass (sample_zipped_doctest_skip) [0]
single_skip (sample_zipped_doctest_skip) [0]
single_skip (sample_zipped_doctest_skip)
k
Trying:
for tst, _ in result.failures:
print(tst)
Expecting:
no_skip_fail (sample_zipped_doctest_skip) [0]
partial_skip_fail (sample_zipped_doctest_skip) [1]
k
Trying:
suite = sample_zipped_doctest.test_suite()
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
finder = doctest.DocTestFinder()
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
test_finder=finder)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
finder = doctest.DocTestFinder()
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_docstrings',
test_finder=finder)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest', globs={})
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=3 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
extraglobs={'y': 1})
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
optionflags=doctest.DONT_ACCEPT_BLANKLINE)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=3>
k
Trying:
defsetUp(t):
import test_zipped_doctest as test_doctest
test_doctest.sillySetup =True
Expecting nothing
k
Trying:
deftearDown(t):
import test_zipped_doctest as test_doctest
del test_doctest.sillySetup
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
setUp=setUp, tearDown=tearDown)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
Trying:
import test_zipped_doctest as test_doctest
Expecting nothing
k
Trying:
test_doctest.sillySetup
Expecting:
Traceback (most recent call last):
...AttributeError: module 'test_zipped_doctest' has no attribute 'sillySetup'
k
Trying:
defsetUp(test):
test.globs['y'] =1
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest', setUp=setUp)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
doctest (test_zipped_doctest) ... 43 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestFinder
doctest (test_zipped_doctest) ... 0 tests with zero failures
k
TracebackException.test_compact_with_cause) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 36928)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 36928)
k
TracebackFormat.test_print_stack) ... ok
TracebackErrorCaretTests.test_specialization_variations) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:1108)
k

@bedevere-bot

Copy link
Copy Markdown

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Refleaks 3.x (tier-2) has failed when building commit 62423c9.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/#/builders/280/builds/2503) and take a look at the build logs.
  4. Check if the failure is related to this commit (62423c9) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/#/builders/280/builds/2503

Failed tests:

  • test_import
  • test.test_multiprocessing_spawn.test_processes
  • test.test_multiprocessing_spawn.test_misc
  • test_descr
  • test.test_multiprocessing_forkserver.test_threads
  • test.test_concurrent_futures.test_shutdown
  • test_turtle
  • test.test_asyncio.test_futures
  • test_str
  • test.test_multiprocessing_fork.test_misc
  • test.test_asyncio.test_server
  • test_cmath
  • test_pdb
  • test_wsgiref
  • test_subprocess
  • test.test_asyncio.test_streams
  • test_generated_cases
  • test_httplib
  • test_pkgutil
  • test_types
  • test.test_asyncio.test_sendfile
  • test_urllib
  • test_profiling
  • test_clinic
  • test_collections
  • test_decimal
  • test_zoneinfo
  • test_zipfile
  • test_json
  • test_zipimport_support
  • test_tools
  • test_runpy
  • test.test_asyncio.test_subprocess
  • test_pprint
  • test_dataclasses
  • test_support
  • test_argparse
  • test_cmd_line_script
  • test.test_concurrent_futures.test_init
  • test_asdl_parser
  • test_email
  • test_embed
  • test_ctypes
  • test.test_io.test_general
  • test_platform
  • test_tempfile
  • test.test_asyncio.test_sslproto
  • test_long
  • test_shutil
  • test_xml_etree_c
  • test_zipapp
  • test__interpreters
  • test.test_asyncio.test_tasks
  • test_tarfile
  • test_htmlparser
  • test_http_cookies
  • test_threading
  • test_re
  • test_optparse
  • test_fcntl
  • test.test_asyncio.test_pep492
  • test_annotationlib
  • test_logging
  • test_urllib2_localnet
  • test_compileall
  • test_configparser
  • test_named_expressions
  • test_uuid
  • test_ordered_dict
  • test_graphlib
  • test_compiler_assemble
  • test_type_annotations
  • test_ast
  • test_sys
  • test_tomllib
  • test_base64
  • test_xml_etree
  • test_ssl
  • test_remote_pdb
  • test_docxmlrpc
  • test.test_gdb.test_backtrace
  • test_idle
  • test.test_asyncio.test_runners
  • test.test_asyncio.test_proactor_events
  • test.test_pydoc.test_pydoc
  • test_csv
  • test_xmlrpc
  • test_reprlib
  • test_capi
  • test.test_asyncio.test_sock_lowlevel
  • test_code
  • test_locale
  • test_exceptions
  • test.test_concurrent_futures.test_interpreter_pool
  • test.test_concurrent_futures.test_wait
  • test_robotparser
  • test_gettext
  • test_httpservers
  • test.test_asyncio.test_ssl
  • test_pickletools
  • test_typing
  • test.test_concurrent_futures.test_process_pool
  • test.test_asyncio.test_base_events
  • test_warnings
  • test.test_asyncio.test_eager_task_factory
  • test.test_gdb.test_misc
  • test___all__
  • test_copy
  • test.test_asyncio.test_taskgroups
  • test_urllib2net
  • test.test_asyncio.test_timeouts
  • test_sysconfig
  • test_traceback
  • test_dict
  • test.test_multiprocessing_fork.test_processes
  • test.test_concurrent_futures.test_deadlock
  • test_unittest
  • test_bytes
  • test_dictcomps
  • test_enum
  • test_urllib2
  • test_datetime
  • test.test_gdb.test_pretty_print
  • test.test_asyncio.test_events
  • test_crossinterp
  • test.test_multiprocessing_forkserver.test_processes
  • test_mimetypes
  • test_trace
  • test_strptime
  • test.test_multiprocessing_forkserver.test_misc
  • test_module
  • test_multiprocessing_main_handling
  • test.test_multiprocessing_spawn.test_threads
  • test.test_multiprocessing_spawn.test_manager
  • test__interpchannels
  • test_pyrepl
  • test_zipimport
  • test_ttk_textonly
  • test.test_asyncio.test_unix_events
  • test_doctest
  • test.test_asyncio.test_selector_events
  • test_grammar
  • test.test_multiprocessing_forkserver.test_manager
  • test_struct
  • test_plistlib
  • test_interpreters
  • test.test_concurrent_futures.test_as_completed

Test leaking resources:

  • test_xml_etree: memory blocks
  • test_general: memory blocks
  • test_interpreter_pool: memory blocks
  • test_multiprocessing_main_handling: memory blocks
  • test_descr: memory blocks
  • test_pretty_print: memory blocks
  • test_sock_lowlevel: memory blocks
  • test_decimal: memory blocks
  • test_doctest: memory blocks
  • test_robotparser: memory blocks
  • test_zipimport: memory blocks
  • test_futures: memory blocks
  • test_ssl: memory blocks
  • test_interpreter_pool: references
  • test_csv: memory blocks
  • test__interpchannels: memory blocks
  • test_base_events: memory blocks
  • test_base64: memory blocks
  • test_http_cookies: memory blocks
  • test_compileall: memory blocks
  • test_re: memory blocks
  • test_zoneinfo: memory blocks
  • test_streams: memory blocks
  • test_copy: memory blocks
  • test_urllib: memory blocks
  • test_pickletools: memory blocks
  • test_zipimport_support: memory blocks
  • test_strptime: memory blocks
  • test_urllib2net: memory blocks
  • test_unittest: memory blocks
  • test_profiling: memory blocks
  • test_pep492: memory blocks
  • test_tarfile: memory blocks
  • test_as_completed: memory blocks
  • test_interpreters: memory blocks
  • test_sysconfig: memory blocks
  • test_cmd_line_script: memory blocks
  • test_named_expressions: memory blocks
  • test_mimetypes: memory blocks
  • test_pdb: memory blocks
  • test_tarfile: references
  • test_collections: memory blocks
  • test_platform: memory blocks
  • test_cmath: memory blocks
  • test_docxmlrpc: memory blocks
  • test_eager_task_factory: memory blocks
  • test_str: memory blocks
  • test_struct: memory blocks
  • test_zipapp: memory blocks
  • test_zipfile: memory blocks
  • test_json: memory blocks
  • test_pkgutil: memory blocks
  • test_httpservers: memory blocks
  • test_deadlock: memory blocks
  • test_backtrace: memory blocks
  • test_trace: memory blocks
  • test_crossinterp: memory blocks
  • test__interpreters: memory blocks
  • test_compileall: references
  • test_processes: memory blocks
  • test_types: memory blocks
  • test_pickletools: references
  • test_runners: memory blocks
  • test_enum: memory blocks
  • test_clinic: memory blocks
  • test_misc: memory blocks
  • test_subprocess: memory blocks
  • test_exceptions: memory blocks
  • test_gettext: memory blocks
  • test_uuid: memory blocks
  • test_logging: memory blocks
  • test_processes: references
  • test_remote_pdb: memory blocks
  • test_warnings: memory blocks
  • test_capi: memory blocks
  • test_graphlib: memory blocks
  • test_interpreters: references
  • test_traceback: memory blocks
  • test_shutil: memory blocks
  • test_module: memory blocks
  • test_runpy: memory blocks
  • test_ast: memory blocks
  • test_code: memory blocks
  • test_process_pool: memory blocks
  • test_generated_cases: memory blocks
  • test_tasks: memory blocks
  • test_ordered_dict: memory blocks
  • test_datetime: memory blocks
  • test_dataclasses: memory blocks
  • test_urllib2_localnet: memory blocks
  • test_grammar: memory blocks
  • test_tomllib: memory blocks
  • test_wsgiref: memory blocks
  • test_idle: memory blocks
  • test_pprint: memory blocks
  • test_optparse: memory blocks
  • test_manager: memory blocks
  • test_sslproto: memory blocks
  • test_email: memory blocks
  • test_long: memory blocks
  • test_plistlib: memory blocks
  • test_xmlrpc: memory blocks
  • test_embed: memory blocks
  • test_events: memory blocks
  • test_unix_events: memory blocks
  • test_pkgutil: references
  • test_selector_events: memory blocks
  • test_taskgroups: memory blocks
  • test_sys: memory blocks
  • test_turtle: memory blocks
  • test_argparse: memory blocks
  • test_shutdown: memory blocks
  • test_dictcomps: memory blocks
  • test_sendfile: memory blocks
  • test_fcntl: memory blocks
  • test_typing: memory blocks
  • test_configparser: memory blocks
  • test_import: memory blocks
  • test_annotationlib: memory blocks
  • test_threading: memory blocks
  • test_asdl_parser: memory blocks
  • test_reprlib: memory blocks
  • test_compiler_assemble: memory blocks
  • test_htmlparser: memory blocks
  • test_httplib: memory blocks
  • test_server: memory blocks
  • test_warnings: references
  • test_init: memory blocks
  • test_ttk_textonly: memory blocks
  • test_type_annotations: memory blocks
  • test_support: memory blocks
  • test_process_pool: references
  • test_pyrepl: memory blocks
  • test_dict: memory blocks
  • test_bytes: memory blocks
  • test_proactor_events: memory blocks
  • test_timeouts: memory blocks
  • test_urllib2: memory blocks
  • test___all__: memory blocks
  • test_threads: memory blocks
  • test_tools: memory blocks
  • test_tempfile: memory blocks
  • test_wait: memory blocks
  • test_ctypes: memory blocks
  • test_manager: references
  • test_xml_etree_c: memory blocks
  • test_pydoc: memory blocks
  • test_locale: memory blocks

Summary of the results of the build (if available):

==

Click to see traceback logs
TracebackErrorCaretTests.test_caret_for_subscript_multiline) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:1108)
k
TracebackLegacyErrorCaretTests.test_basic_caret) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 46556)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_memory_error) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_with_spaces_and_parenthesis) ... ok
Traceback (most recent call last):
ValueError: line 4 of the docstring for some_test has inconsistent leading whitespace: 'indentation'
k
Trying:
docstring =r'''>>>print(('bad indentation',
...2))
('bad', 'indentation')
'''
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 2 of the docstring for some_test has inconsistent leading whitespace: '... 2))'
k
Trying:
docstring ='>>>print(1)\n1'
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 1 of the docstring for some_test lacks blank after >>>: '>>>print(1)'
k
Trying:
docstring ='>>> if 1:\n...print(1)\n1'
Expecting nothing
k
Trying:
parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 2 of the docstring for some_test lacks blank after ...: '...print(1)'
k
Trying:
docstring ='''>>>print1212'''
Expecting nothing
k
Trying:
test = parser.get_doctest(docstring, globs, 'some_test',
'some_test', 20)
Expecting nothing
k
Trying:
same_test = parser.get_doctest(docstring, globs, 'some_test',
'some_test', 20)
Expecting nothing
k
Trying:
test == same_test
Expecting:
True
k
Trying:
test != same_test
Expecting:
False
k
Trying:
hash(test) ==hash(same_test)
Expecting:
True
k
Trying:
docstring ='''>>>print4242'''
Expecting nothing
k
Trying:
other_test = parser.get_doctest(docstring, globs, 'other_test',
'other_file', 10)
Expecting nothing
k
Trying:
test == other_test
Expecting:
False
k
Trying:
test != other_test
Expecting:
True
k
Trying:
test < other_test
Expecting:
False
k
Trying:
other_test < test
Expecting:
True
k
Trying:
no_lineno = parser.get_doctest(docstring, globs, 'some_test',
'some_test', None)
Expecting nothing
k
Trying:
test.lineno isNoneExpecting:
False
k
Trying:
no_lineno.lineno isNoneExpecting:
True
k
Trying:
test < no_lineno
Expecting:
False
k
Trying:
no_lineno < test
Expecting:
True
k
Trying:
DocTestCase = doctest.DocTestCase
Expecting nothing
k
Trying:
test_case = DocTestCase(test)
Expecting nothing
k
Trying:
same_test_case = DocTestCase(same_test)
Expecting nothing
k
Trying:
other_test_case = DocTestCase(other_test)
Expecting nothing
k
Trying:
test_case == same_test_case
Expecting:
True
k
Trying:
test_case != same_test_case
Expecting:
False
k
Trying:
hash(test_case) ==hash(same_test_case)
Expecting:
True
k
Trying:
test == other_test_case
Expecting:
False
k
Trying:
test != other_test_case
Expecting:
True
k
doctest (test_zipped_doctest) ... 46 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestParser
Trying:
s ='''>>> x, y =2, 3# no output expected>>>if1:
...print(x)
...print(y)
23
TracebackLegacyErrorCaretTests.test_memory_error) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_wide_chars_subscript) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_call_with_spaces_and_parenthesis) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_CIPHER] no shared cipher (_ssl.c:1108)
k
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_two_char) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 50676)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
k
TracebackErrorCaretTests.test_caret_for_subscript_with_spaces_and_parenthesis) ... ok
Traceback (most recent call last):
ZeroDivisionError: division by zero
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
'''>>> x =12>>>print('pre-exception output', x//0)
pre-exception output
Traceback (most recent call last):
ZeroDivisionError: division by zero
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 4, in f
Failed example:
print('pre-exception output', x//0)
Exception raised:
...ZeroDivisionError: division by zero
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>raiseValueError('multi\nline\nmessage')
Traceback (most recent call last):
ValueError: multi
line
message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
deff(x):
r'''>>>raiseValueError('message')
Traceback (most recent call last):
ValueError: wrong message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
raiseValueError('message')
Expected:
Traceback (most recent call last):
ValueError: wrong message
Got:
Traceback (most recent call last):
...ValueError: message
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
ValueError: wrong message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message')
Traceback (most recent call last):
HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 4, in f
Failed example:
raise HTTPException('message')
Expected:
Traceback (most recent call last):
HTTPException: message
Got:
Traceback (most recent call last):
...
http.client.HTTPException: message
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message')
Traceback (most recent call last):
http.client.HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException: message
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
TypeError: wrong type'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
raiseValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Expected:
Traceback (most recent call last):
TypeError: wrong type
Got:
Traceback (most recent call last):
...ValueError: message
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>from http.client import HTTPException
>>>raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
foo.bar.HTTPException:
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=2)
k
Trying:
deff(x):
r'''>>>1//00'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
1//0Exception raised:
Traceback (most recent call last):
...ZeroDivisionError: division by zero
TestResults(failed=1, attempted=1)
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 43 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.option_directives
Trying:
import _colorize
Expecting nothing
k
Trying:
save_colorize = _colorize.COLORIZE
Expecting nothing
k
Trying:
_colorize.COLORIZE=False
Expecting nothing
k
Trying:
deff(x): r'''>>>print(list(range(10))) # should fail: no ellipsis
[0, 1, ..., 9]
TracebackTests.test_broken_from) ... ok
TracebackCases.test_format_exception_group_without_show_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 32902)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
Traceback (test.test_zipimport.DeflateCompressedZipImportTestCase.testTraceback) ... ok
TracebackFormat.test_unhashable) ... ok
TracebackErrorCaretTests.test_decorator_application_lineno_correct) ... ok
TracebackLegacyErrorCaretTests.test_caret_exception_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 59298)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
TLS: (<ssl.SSLSocket fd=5, family=2, type=1, proto=0, laddr=('127.0.0.1', 46032), raddr=('127.0.0.1', 52603)>, 'read', <TLSVersion.TLSv1_3: 772>, <_TLSContentType.ALERT: 21>, <_TLSAlertType.CERTIFICATE_REQUIRED: 116>, b'\x02t')
k
TracebackException.test_traceback_header) ... ok
TracebackTests.test_nonexistent_module) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 43354)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 35034)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 58018)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 52364)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackLegacyErrorCaretTests.test_caret_for_subscript_with_spaces_and_parenthesis) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_SIGNATURE_ALGORITHMS] no shared signature algorithms (_ssl.c:1108)
k
TracebackFormat.test_traceback_format) ... ok
TracebackLegacyErrorCaretTests.test_multiline_method_call_a) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
connection timeout TimeoutError('timed out')
server: new connection from ('127.0.0.1', 49804)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 37184)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (test.test_zipimport.UncompressedZipImportTestCase.testTraceback) ... ok
TracebackLegacyErrorCaretTests.test_many_lines) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 54104)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 52608)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackCases.test_format_exception_group_nested_with_notes) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLEOFError: [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 51762)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline_two_char) ... ok
TracebackException.test_cause) ... ok
TracebackException.test_no_save_exc_type) ... ok
TracebackCases.test_format_exception_group_syntax_error) ... ok
TracebackLegacyErrorCaretTests.test_decorator_application_lineno_correct) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 41090)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackLegacyErrorCaretTests.test_many_lines_binary_op) ... ok
TracebackFormat.test_stack_format) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 33990)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 42140)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2507, in run
msg =self.read()
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2484, in read
returnself.sslconn.read()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1155, in read
returnself._sslobj.read(len)
~~~~~~~~~~~~~~~~~^^^^^
ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:3000)
k
TracebackFormat.test_format_stack) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_multiline) ... ok
TracebackException.test_from_exception) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_subscript_multiline) ... ok
TracebackException_ExceptionGroups.test_comparison) ... ok
TracebackException.test_comparison_equivalent_exceptions_are_equal) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 34434)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_caret_for_binary_operators) ... ok
TracebackCases.test_format_exception_group_with_cause) ... ok
TracebackCases.test_print_last) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 37562)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 39310)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackErrorCaretTests.test_line_with_unicode) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SUITABLE_KEY_SHARE] no suitable key share (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackException.test_context) ... ok
TracebackCases.test_format_exception_group_explicit_class) ... ok
TracebackErrorCaretTests.test_byte_offset_with_wide_characters_middle) ... ok
TracebackFormat.test_exception_group_deep_recursion_traceback) ... ok
TracebackLegacyErrorCaretTests.test_caret_multiline_expression_bin_op) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SHARED_CIPHER] no shared cipher (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: NO_SUITABLE_KEY_SHARE] no suitable key share (_ssl.c:1108)
k
TracebackLegacyErrorCaretTests.test_multiline_method_call_b) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 42274)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_caret_exception_group) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_with_spaces_and_parenthesis) ... ok
TracebackErrorCaretTests.test_caret_multiline_expression) ... ok
TracebackTests.test_import_bug) ... ok
TracebackTests.test_exec_failure_nested) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline_with_unicode) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_with_wide_characters_term_highlight) ... ok
Traceback.test_colorized_traceback_from_exception_group) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 36320)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 56488)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackLegacyErrorCaretTests.test_caret_multiline_expression_syntax_error) ... ok
TracebackCases.test_format_exception_group) ... ok
TracebackException.test_limit) ... ok
TracebackException_ExceptionGroups.test_exception_group_format) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 49784)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackLegacyErrorCaretTests.test_byte_offset_with_emojis_term_highlight) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/process.py", line 320, in _bootstrapself.run()
~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/process.py", line 108, in runself._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/_test_multiprocessing.py", line 524, in _sleep_some_event
event.set()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 349, in setwithself._cond:
^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 247, in __exit__returnself._lock.__exit__(*args)
~~~~~~~~~~~~~~~~~~~^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 100, in __exit__returnself._semlock.__exit__(*args)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^
KeyboardInterrupt
k
TracebackException_ExceptionGroups.test_exception_group_format_exception_only) ... ok
TracebackErrorCaretTests.test_basic_caret) ... ok
TracebackException.test_lookup_lines) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_subscript_unicode) ... ok
TracebackException.test_no_refs_to_exception_and_traceback_objects) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 33296)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_multiline_method_call_a) ... ok
TracebackException.test_locals) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 53436)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 47530)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackFormat.test_print_exception_bad_type_capi) ... ok
TracebackFormat.test_recursive_traceback) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackErrorCaretTests.test_anchors_for_simple_assign_statements_are_elided) ... ok
TracebackCases.test_recursion_error_during_traceback) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 55644)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackCases.test_format_exception_group_syntax_error_with_custom_values) ... ok
TracebackErrorCaretTests.test_caret_for_call_multiline) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 52862)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackLegacyErrorCaretTests.test_caret_for_call_unicode) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 42600)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_byte_offset_wide_chars_subscript) ... ok
TracebackErrorCaretTests.test_caret_for_call_unicode) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_two_char) ... ok
TracebackCases.test_print_exception_exc) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 40754)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1108)
k
TracebackCases.test_bad_indentation) ... ok
TracebackException_ExceptionGroups.test_exception_group_construction) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_subscript) ... ok
TracebackErrorCaretTests.test_byte_offset_with_wide_characters_term_highlight) ... ok
TracebackErrorCaretTests.test_caret_in_type_annotation) ... ok
TracebackErrorCaretTests.test_caret_for_call) ... ok
TracebackErrorCaretTests.test_many_lines_binary_op) ... ok
TracebackErrorCaretTests.test_anchors_for_simple_return_statements_are_elided) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_with_unicode) ... ok
TracebackException_ExceptionGroups.test_exception_group_format_exception_onlyi_recursive) ... ok
TracebackTests.test_unencodable_filename) ... ok
TracebackException.test_dont_swallow_cause_or_context_of_falsey_exception) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 56498)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 55706)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 36704)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackCases.test_format_exception_group_multiline2_messages) ... ok
TracebackLegacyErrorCaretTests.test_traceback_very_long_line) ... ok
Traceback.test_colorized_traceback) ... ok
TracebackException.test_print) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 45214)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 38582)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackFormat.test_traceback_format_with_cleared_frames) ... ok
TracebackCases.test_format_exception_only_bad__str__) ... ok
TracebackLegacyErrorCaretTests.test_anchors_for_simple_assign_statements_are_elided) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 44196)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 44196)
k
TracebackErrorCaretTests.test_caret_for_subscript_unicode) ... ok
TracebackErrorCaretTests.test_many_lines) ... ok
TracebackLegacyErrorCaretTests.test_anchors_for_simple_return_statements_are_elided) ... ok
TracebackException.test_compact_no_cause) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 59106)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackTests.test_broken_parent) ... ok
TracebackAttr (test.test_exceptions.ExceptionTests.testNoneClearsTracebackAttr) ... ok
TracebackCases.test_format_exception_group_with_note) ... ok
TracebackTests.test_exec_failure) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_with_unicode) ... ok
TracebackErrorCaretTests.test_multiline_method_call_b) ... ok
TracebackLegacyErrorCaretTests.test_multiline_method_call_c) ... ok
TracebackCases.test_format_base_exception_group) ... ok
TracebackException_ExceptionGroups.test_max_group_depth) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackCases.test_base_exception) ... ok
Traceback.test_colorized_syntax_error) ... ok
TracebackErrorCaretTests.test_caret_multiline_expression_syntax_error) ... ok
TracebackErrorCaretTests.test_byte_offset_multiline) ... ok
TracebackLegacyErrorCaretTests.test_secondary_caret_not_elided) ... ok
TracebackCases.test_print_traceback_at_exit) ... ok
TracebackCases.test_caret) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 54498)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
Traceback (test.test_zipimport.ZStdCompressedZipImportTestCase.testTraceback) ... ok
TracebackCases.test_extract_stack) ... ok
TracebackTests.test_syntax_error) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_call_multiline) ... ok
TracebackLegacyErrorCaretTests.test_many_lines_no_caret) ... ok
TracebackErrorCaretTests.test_secondary_caret_not_elided) ... ok
TracebackCases.test_signatures) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 45000)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
Connection reset by peer: ('127.0.0.1', 45000)
k
TracebackException.test_no_locals) ... ok
Traceback (test.test_exceptions.ExceptionTests.testWithTraceback) ... ok
TracebackLegacyErrorCaretTests.test_specialization_variations) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 53516)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 35962)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 35976)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 56054)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackErrorCaretTests.test_wide_characters_unicode_with_problematic_byte_offset) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline_with_unicode) ... ok
TracebackCases.test_encoded_file) ... ok
TracebackTests.test_broken_parent_from) ... ok
TracebackErrorCaretTests.test_caret_multiline_expression_bin_op) ... ok
TracebackCases.test_print_exception) ... ok
TracebackCases.test_nocaret) ... ok
TracebackException.test_comparison_basic) ... ok
TracebackException.test_unhashable) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 33706)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 57264)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 50436)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackTests.test_nonexistent_module_nested) ... ok
TracebackErrorCaretTests.test_traceback_very_long_line) ... ok
TracebackException.test_smoke_builtin) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/process.py", line 320, in _bootstrapself.run()
~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/process.py", line 108, in runself._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/_test_multiprocessing.py", line 525, in _sleep_some_event
time.sleep(100)
~~~~~~~~~~^^^^^
KeyboardInterrupt
k
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackCases.test_exception_is_None) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline_two_char) ... ok
TracebackCases.test_format_exception_group_multiple_exceptions) ... ok
TracebackErrorCaretTests.test_multiline_method_call_c) ... ok
TracebackCases.test_no_caret_with_no_debug_ranges_flag) ... ok
Traceback.test_colorized_traceback_is_the_default) ... ok
TracebackErrorCaretTests.test_byte_offset_with_emojis_term_highlight) ... ok
TracebackCases.test_no_caret_with_no_debug_ranges_flag_python_traceback) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1108)
server: new connection from ('127.0.0.1', 47082)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackException.test_smoke_user_exception) ... ok
TracebackErrorCaretTests.test_many_lines_no_caret) ... ok
TracebackCases.test_clear) ... ok
TracebackErrorCaretTests.test_caret_for_binary_operators_multiline) ... ok
TracebackCases.test_format_exception_group_with_tracebacks) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
k
TracebackException.test_comparison_params_variations) ... ok
TracebackException.test_long_context_chain) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_BAD_CERTIFICATE] ssl/tls alert bad certificate (_ssl.c:1108)
connection timeout TimeoutError('timed out')
connection timeout TimeoutError('timed out')
k
TracebackErrorCaretTests.test_caret_for_subscript) ... ok
TracebackErrorCaretTests.test_caret_for_call_with_spaces_and_parenthesis) ... ok
TracebackLegacyErrorCaretTests.test_caret_multiline_expression) ... ok
TracebackLegacyErrorCaretTests.test_wide_characters_unicode_with_problematic_byte_offset) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_binary_operators_multiline) ... ok
TracebackException_ExceptionGroups.test_max_group_width) ... ok
TracebackLegacyErrorCaretTests.test_byte_offset_with_wide_characters_middle) ... ok
TracebackLegacyErrorCaretTests.test_line_with_unicode) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: SSLV3_ALERT_CERTIFICATE_UNKNOWN] ssl/tls alert certificate unknown (_ssl.c:1108)
server: new connection from ('127.0.0.1', 47286)
server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
k
TracebackFormat.test_print_exception_bad_type_python) ... ok
TracebackCases.test_format_exception_exc) ... ok
TracebackFormat.test_exception_group_deep_recursion_capi) ... ok
TracebackCases.test_format_exception_only_exc) ... ok
TracebackException_ExceptionGroups.test_dont_swallow_subexceptions_of_falsey_exceptiongroup) ... ok
TracebackTests.test_broken_submodule) ... ok
TracebackLegacyErrorCaretTests.test_caret_for_call) ... ok
Traceback (test.test_exceptions.ExceptionTests.testInvalidTraceback) ... ok
TracebackLegacyErrorCaretTests.test_caret_in_type_annotation) ... ok
TracebackLegacyErrorCaretTests.test_traceback_specialization_with_syntax_error) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/test/test_ssl.py", line 2423, in wrap_conn
self.sslconn =self.server.context.wrap_socket(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^self.sock, server_side=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 454, in wrap_socket
returnself.sslsocket_class._create(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
sock=sock,
^^^^^^^^^^...<5 lines>...
session=session
^^^^^^^^^^^^^^^
)
^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1091, in _create
self.do_handshake()
~~~~~~~~~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/ssl.py", line 1422, in do_handshake
self._sslobj.do_handshake()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
ssl.SSLError: [SSL: RECORD_LAYER_FAILURE] record layer failure (_ssl.c:1108)
server: new connection from ('127.0.0.1', 47008)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
server: new connection from ('127.0.0.1', 45770)
server: connection cipher is now ('ECDHE-PSK-CHACHA20-POLY1305', 'TLSv1.2', 256)
k
TracebackErrorCaretTests.test_traceback_specialization_with_syntax_error) ... ok
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 371, in _run_finalizers
finalizer()
~~~~~~~~~^^
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 295, in __call__
res =self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 86, in _cleanup
sem_unlink(name)
~~~~~~~~~~^^^^^^FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
ValueError: line 1 of the doctest for s has an invalid option: '+BADOPTION'
k
Trying:
s ='>>> print(12) #doctest: ELLIPSIS'
Expecting nothing
k
Trying:
test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 1 of the doctest for s has an invalid option: 'ELLIPSIS'
k
Trying:
s ='>>> # doctest: +ELLIPSIS'
Expecting nothing
k
Trying:
test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
Expecting:
Traceback (most recent call last):
ValueError: line 0 of the doctest for s has an option directive on a line with no example: '# doctest: +ELLIPSIS'
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 37 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.optionflags
Trying:
import _colorize
Expecting nothing
k
Trying:
save_colorize = _colorize.COLORIZE
Expecting nothing
k
Trying:
_colorize.COLORIZE=False
Expecting nothing
k
Trying:
deff(x):
'>>> True\n1\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.DONT_ACCEPT_TRUE_FOR_1
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
True
Expected:
1
Got:
True
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
'>>> print("a\\n\\nb")\na\n<BLANKLINE>\nb\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.DONT_ACCEPT_BLANKLINE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
print("a\n\nb")
Expected:
a
<BLANKLINE>
b
Got:
a
<BLANKLINE>
b
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
'\n>>> print(1, 2, 3)\n 1 2\n 3'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print(1, 2, 3)
Expected:
123
Got:
123
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.NORMALIZE_WHITESPACE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
print(list(range(20))) #doctest: +NORMALIZE_WHITESPACEExpecting:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
k
Trying:
deff(x):
'>>> print(list(range(15)))\n[0, 1, 2, ..., 14]\n'
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 2, in f
Failed example:
print(list(range(15)))
Expected:
[0, 1, 2, ..., 14]
Got:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.ELLIPSIS
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Expecting:
TestResults(failed=0, attempted=1)
k
Trying:
if1:
for i inrange(100):
print(i**2, end='') #doctest: +ELLIPSISprint('!')
Expecting:
01...4...9 16...364964...9801 !
k
Trying:
if1: #doctest: +ELLIPSISfor i inrange(20):
print(i, end='')
print(20)
Expecting:
012...1...2...0
k
Trying:
print(list(range(20))) # doctest:+ELLIPSISExpecting:
[0, 1, ..., 18, 19]
k
Trying:
print(list(range(20))) # doctest: +ELLIPSIS# doctest: +NORMALIZE_WHITESPACEExpecting:
[0, 1, ..., 18, 19]
k
Trying:
import random
Expecting nothing
k
Trying:
deff(x):
r'''>>>print('\n'.join('abcdefg'))
a
B
c
d
f
g
h
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Expected:
a
B
c
d
f
g
h
Got:
a
b
c
d
e
f
g
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_UDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Differences (unified diff with-expected +actual):
@@-1,7+1,7@@
a
-B
+b
c
d
+e
f
g
-h
TestResults(failed=1, attempted=1)
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_CDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print('\n'.join('abcdefg'))
Differences (context diff with expected followed by actual):
******************1,7****
a
! B
c
d
f
g
- h
---1,7----
a
! b
c
d
+ e
f
g
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>print("a b c d e f g h i j k l m")
a b c d e f g h i j k 1 m
'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_NDIFF
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 3, in f
Failed example:
print("a b c d e f g h i j k l m")
Differences (ndiff with-expected +actual):
- a b c d e f g h i j k 1 m
?^+ a b c d e f g h i j k l m
?+++^
TestResults(failed=1, attempted=1)
k
Trying:
deff(x):
r'''>>>print(1) # first success1>>>print(2) # first failure200>>>print(3) # second failure300>>>print(4) # second success4>>>print(5) # third failure500'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=3, attempted=5)
k
Trying:
doctest.DocTestRunner(verbose=True, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
Trying:
print(1) # first success
Expecting:
1
ok
Trying:
print(2) # first failure
Expecting:
200**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=3, attempted=5)
k
Trying:
flags = doctest.FAIL_FAST
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=1, attempted=2)
k
Trying:
flags = doctest.FAIL_FAST| doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
print(2) # first failure
Expected:
200
Got:
2
TestResults(failed=1, attempted=2)
k
Trying:
deff(x):
r'''>>>print(1) # first success1>>>raiseValueError(2) # first failure200>>>print(3) # second failure300>>>print(4) # second success4>>>print(5) # third failure500'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
flags = doctest.REPORT_ONLY_FIRST_FAILURE
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
raiseValueError(2) # first failureException raised:
...ValueError: 2
TestResults(failed=3, attempted=5)
k
Trying:
flags = doctest.FAIL_FAST
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
# doctest: +ELLIPSISExpecting:
**********************************************************************
File ..., line 5, in f
Failed example:
raiseValueError(2) # first failureException raised:
...ValueError: 2
TestResults(failed=1, attempted=2)
k
Trying:
unlikely ="UNLIKELY_OPTION_NAME"
Expecting nothing
k
Trying:
unlikely in doctest.OPTIONFLAGS_BY_NAMEExpecting:
False
k
Trying:
new_flag_value = doctest.register_optionflag(unlikely)
Expecting nothing
k
Trying:
unlikely in doctest.OPTIONFLAGS_BY_NAMEExpecting:
True
k
Trying:
redundant_flag_value = doctest.register_optionflag(unlikely)
Expecting nothing
k
Trying:
redundant_flag_value == new_flag_value
Expecting:
True
k
Trying:
del doctest.OPTIONFLAGS_BY_NAME[unlikely]
Expecting nothing
k
Trying:
_colorize.COLORIZE= save_colorize
Expecting nothing
k
doctest (test_zipped_doctest) ... 73 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestRunner.verbose_flag
Trying:
deff(x):
'''>>> x =12>>>print(x)
12>>> x//26'''
Expecting nothing
k
Trying:
test = doctest.DocTestFinder().find(f)[0]
Expecting nothing
k
Trying:
doctest.DocTestRunner(verbose=True).run(test)
Expecting:
Trying:
x =12
Expecting nothing
ok
Trying:
print(x)
Expecting:
12
ok
Trying:
x//2
Expecting:
6
ok
TestResults(failed=0, attempted=3)
k
Trying:
old_argv = sys.argv
Expecting nothing
k
Trying:
sys.argv = ['test']
Expecting nothing
k
Trying:
doctest.DocTestRunner().run(test)
Expecting:
TestResults(failed=0, attempted=3)
k
Trying:
sys.argv = ['test', '-v']
Expecting nothing
k
Trying:
doctest.DocTestRunner().run(test)
Expecting:
Trying:
x =12
Expecting nothing
ok
Trying:
print(x)
Expecting:
12
ok
Trying:
x//2
Expecting:
6
ok
TestResults(failed=0, attempted=3)
k
Trying:
sys.argv = old_argv
Expecting nothing
k
doctest (test_zipped_doctest) ... 9 tests with zero failures
Finding tests in test_zipped_doctest.test_Example
Trying:
example = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
(example.source, example.want, example.exc_msg,
example.lineno, example.indent, example.options)
Expecting:
('print(1)\n', '1\n', None, 0, 0, {})
k
Trying:
exc_msg ='IndexError: pop from an empty list'
Expecting nothing
k
Trying:
example = doctest.Example('[].pop()', '', exc_msg,
lineno=5, indent=4,
options={doctest.ELLIPSIS: True})
Expecting nothing
k
Trying:
(example.source, example.want, example.exc_msg,
example.lineno, example.indent, example.options)
Expecting:
('[].pop()\n', '', 'IndexError: pop from an empty list\n', 5, 4, {8: True})
k
Trying:
e = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1)\n', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1);\nprint(2)\n', '1\n2\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1);\nprint(2)\n', '1\n2\n')
k
Trying:
e = doctest.Example('print(1);\nprint(2)', '1\n2\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1);\nprint(2)\n', '1\n2\n')
k
Trying:
e = doctest.Example('', '')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('\n', '')
k
Trying:
e = doctest.Example('print(1)', '1\n')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print(1)', '1')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print(1)\n', '1\n')
k
Trying:
e = doctest.Example('print', '')
Expecting nothing
k
Trying:
e.source, e.want
Expecting:
('print\n', '')
k
Trying:
exc_msg ='IndexError: pop from an empty list'
Expecting nothing
k
Trying:
e = doctest.Example('[].pop()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'IndexError: pop from an empty list\n'
k
Trying:
exc_msg ='IndexError: pop from an empty list\n'
Expecting nothing
k
Trying:
e = doctest.Example('[].pop()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'IndexError: pop from an empty list\n'
k
Trying:
exc_msg ='ValueError: 1\n 2'
Expecting nothing
k
Trying:
e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'ValueError: 1\n 2\n'
k
Trying:
exc_msg ='ValueError: 1\n 2\n'
Expecting nothing
k
Trying:
e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'ValueError: 1\n 2\n'
k
Trying:
exc_msg =''
Expecting nothing
k
Trying:
e = doctest.Example('raise X()', '', exc_msg)
Expecting nothing
k
Trying:
e.exc_msg
Expecting:
'\n'
k
Trying:
example = doctest.Example('print 1', '1\n')
Expecting nothing
k
Trying:
same_example = doctest.Example('print 1', '1\n')
Expecting nothing
k
Trying:
other_example = doctest.Example('print 42', '42\n')
Expecting nothing
k
Trying:
example == same_example
Expecting:
True
k
Trying:
example != same_example
Expecting:
False
k
Trying:
hash(example) ==hash(same_example)
Expecting:
True
k
Trying:
example == other_example
Expecting:
False
k
Trying:
example != other_example
Expecting:
True
k
doctest (test_zipped_doctest) ... 44 tests with zero failures
Finding tests in test_zipped_doctest.test_debug
Trying:
s ='''>>> x =12>>>print(x)
12'''
Expecting nothing
k
Trying:
from test.support.pty_helper import FakeInput
Expecting nothing
k
Trying:
real_stdin = sys.stdin
Expecting nothing
k
Trying:
sys.stdin = FakeInput(['next', 'print(x)', 'continue'])
Expecting nothing
k
Trying:
try: doctest.debug_src(s)
finally: sys.stdin = real_stdin
Expecting:
><string>(1)<module>()
(Pdb) next12--Return--><string>(1)<module>()->None
(Pdb) print(x)
12
(Pdb) continue
k
doctest (test_zipped_doctest) ... 5 tests with zero failures
Finding tests in test_zipped_doctest.test_testsource
Trying:
import test_zipped_doctest as test_doctest
Expecting nothing
k
Trying:
name ='test_zipped_doctest.sample_func'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
# Blah blah#print(sample_func(22))
# Expected:## 44## Yee ha!<BLANKLINE>
k
Trying:
name ='test_zipped_doctest.SampleNewStyleClass'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
print('1\n2\n3')
# Expected:## 1## 2## 3<BLANKLINE>
k
Trying:
name ='test_zipped_doctest.SampleClass.a_classmethod'
Expecting nothing
k
Trying:
print(doctest.testsource(test_doctest, name))
Expecting:
print(SampleClass.a_classmethod(10))
# Expected:## 12print(SampleClass(0).a_classmethod(10))
# Expected:## 12<BLANKLINE>
k
doctest (test_zipped_doctest) ... 7 tests with zero failures
Finding tests in test_zipped_doctest.test_trailing_space_in_test
Trying:
x, y ='foo', ''
Expecting nothing
k
Trying:
print(x, y)
Expecting:
foo k
doctest (test_zipped_doctest) ... 2 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestSuite
Trying:
import unittest
Expecting nothing
k
Trying:
import sample_zipped_doctest
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite(sample_zipped_doctest)
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
for tst, _ in result.failures:
print(tst)
Expecting:
bad (sample_zipped_doctest.__test__) [0]
foo (sample_zipped_doctest) [0]
k
Trying:
for tst, _ in result.errors:
print(tst)
Expecting:
test_silly_setup (sample_zipped_doctest) [1]
y_is_one (sample_zipped_doctest) [0]
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest')
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_doctests')
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_docstrings')
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_skip')
Expecting nothing
k
Trying:
result = suite.run(unittest.TestResult())
Expecting nothing
k
Trying:
result
Expecting:
<unittest.result.TestResult run=6 errors=0 failures=2>
k
Trying:
len(result.skipped)
Expecting:
7
k
Trying:
for tst, _ in result.skipped:
print(tst)
Expecting:
double_skip (sample_zipped_doctest_skip) [0]
double_skip (sample_zipped_doctest_skip) [1]
double_skip (sample_zipped_doctest_skip)
partial_skip_fail (sample_zipped_doctest_skip) [0]
partial_skip_pass (sample_zipped_doctest_skip) [0]
single_skip (sample_zipped_doctest_skip) [0]
single_skip (sample_zipped_doctest_skip)
k
Trying:
for tst, _ in result.failures:
print(tst)
Expecting:
no_skip_fail (sample_zipped_doctest_skip) [0]
partial_skip_fail (sample_zipped_doctest_skip) [1]
k
Trying:
suite = sample_zipped_doctest.test_suite()
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
finder = doctest.DocTestFinder()
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
test_finder=finder)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=2>
k
Trying:
finder = doctest.DocTestFinder()
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest_no_docstrings',
test_finder=finder)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=0 errors=0 failures=0>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest', globs={})
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=3 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
extraglobs={'y': 1})
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
optionflags=doctest.DONT_ACCEPT_BLANKLINE)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=2 failures=3>
k
Trying:
defsetUp(t):
import test_zipped_doctest as test_doctest
test_doctest.sillySetup =True
Expecting nothing
k
Trying:
deftearDown(t):
import test_zipped_doctest as test_doctest
del test_doctest.sillySetup
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest',
setUp=setUp, tearDown=tearDown)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
Trying:
import test_zipped_doctest as test_doctest
Expecting nothing
k
Trying:
test_doctest.sillySetup
Expecting:
Traceback (most recent call last):
...AttributeError: module 'test_zipped_doctest' has no attribute 'sillySetup'
k
Trying:
defsetUp(test):
test.globs['y'] =1
Expecting nothing
k
Trying:
suite = doctest.DocTestSuite('sample_zipped_doctest', setUp=setUp)
Expecting nothing
k
Trying:
suite.run(unittest.TestResult())
Expecting:
<unittest.result.TestResult run=9 errors=1 failures=2>
k
doctest (test_zipped_doctest) ... 43 tests with zero failures
Finding tests in test_zipped_doctest.test_DocTestFinder
doctest (test_zipped_doctest) ... 0 tests with zero failures
k
TracebackException.test_compact_with_cause) ... ok
TracebackFormat.test_print_stack) ... ok
TracebackErrorCaretTests.test_specialization_variations) ... ok
TracebackCases.test_format_exception_group_multiline_messages) ... ok

@Fidget-SpinnerFidget-Spinner left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has a bunch of refleaks which I've yet to find, but here are some easier ones to spot.

Comment threadPython/ceval.c
res = NULL;
goto cleanup;
}
res = _PyUnicode_JoinArray(&_Py_STR(empty), args_o, total_args);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No stackref buffer cleanup here.

Comment threadPython/ceval.c
args_o, 2,
args_o+1, 2,
half_args
);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No stackref buffer cleanup here.

@markshannon
markshannon deleted the refactor-big-uops branch December 4, 2025 10:35
@markshannon

Copy link
Copy Markdown
MemberAuthor

Refleaks fixed in #142257

@mhsmith

Copy link
Copy Markdown
Member

It looks like these leaks may also have been the cause of this failure in the Android CI, which appeared when this PR was merged and disappeared when #142257 was merged. However, this was confused by a different Android failure which was happening around the same time.

StanFromIreland pushed a commit to StanFromIreland/cpython that referenced this pull request Dec 6, 2025
* Factor out bodies of the largest uops, to reduce jit code size.
* Factor out common assert, also reducing jit code size.
* Limit size of jitted code for a single executor to 1MB.
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants

@markshannon@bedevere-bot@mhsmith@diegorusso@Fidget-Spinner