Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-91212: Fixed flickering when the tracer is turned off #95129

Merged
merged 2 commits into from Sep 29, 2022

Conversation

relent95
Copy link
Contributor

@relent95 relent95 commented Jul 22, 2022

RawTurtle.write() calls RawTurtle._write(), that calls TurtleScreenBase._write(), and finally that calls update() of the underlying canvas.

When the tracer is turned off, the update() of the underlying canvas should not be called.
That is done by removing self.cv.update() inside TurtleScreenBase._write().
But update() of the underlying canvas should be called if the tracer is turned on.
That is done by the added self._update() after self.screen._write() inside RawTurtle._write().

@cpython-cla-bot
Copy link

cpython-cla-bot bot commented Jul 22, 2022

All commit authors signed the Contributor License Agreement.
CLA signed

@bedevere-bot
Copy link

bedevere-bot commented Jul 22, 2022

Most changes to Python require a NEWS entry.

Please add it using the blurb_it web app or the blurb command-line tool.

Copy link
Member

@gpshead gpshead left a comment

Tested before and after from a Chromebook Linux runtime, confirmed. Thanks for the fix!

@gpshead gpshead added type-bug An unexpected behavior, bug, or error needs backport to 3.10 stdlib Python modules in the Lib dir expert-tkinter needs backport to 3.11 labels Sep 29, 2022
@gpshead gpshead merged commit 4652093 into python:main Sep 29, 2022
14 checks passed
@miss-islington
Copy link
Contributor

miss-islington commented Sep 29, 2022

Thanks @relent95 for the PR, and @gpshead for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10, 3.11.
🐍🍒🤖

@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

GH-97636 is a backport of this pull request to the 3.11 branch.

@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

GH-97637 is a backport of this pull request to the 3.10 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 29, 2022
…nGH-95129)

Fixed flickering when the tracer is turned off.
(cherry picked from commit 4652093)

Co-authored-by: Shin-myoung-serp <relent95@naver.com>
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 29, 2022
…nGH-95129)

Fixed flickering when the tracer is turned off.
(cherry picked from commit 4652093)

Co-authored-by: Shin-myoung-serp <relent95@naver.com>
miss-islington added a commit that referenced this pull request Sep 29, 2022
Fixed flickering when the tracer is turned off.
(cherry picked from commit 4652093)

Co-authored-by: Shin-myoung-serp <relent95@naver.com>
miss-islington added a commit that referenced this pull request Sep 29, 2022
Fixed flickering when the tracer is turned off.
(cherry picked from commit 4652093)

Co-authored-by: Shin-myoung-serp <relent95@naver.com>
@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

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

Hi! The buildbot AMD64 Arch Linux Asan 3.11 has failed when building commit 9cf41f4.

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/all/#builders/1012/builds/348) and take a look at the build logs.
  4. Check if the failure is related to this commit (9cf41f4) 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/all/#builders/1012/builds/348

Failed tests:

  • test_urllib
  • test_xxlimited
  • test_signal
  • test_asdl_parser
  • test_audit
  • test_crashers
  • test_zipfile64
  • test_hash
  • test_multiprocessing_main_handling
  • test_gzip
  • test_urllib_response
  • test_http_cookies
  • test_platform
  • test_wave
  • test_imghdr
  • test_dict
  • test_minidom
  • test_contextlib
  • test_winconsoleio
  • test_crypt
  • test_asynchat
  • test_compare
  • test_class
  • test_pickle
  • test_tempfile
  • test_sundry
  • test_msilib
  • test_codecencodings_iso2022
  • test_logging
  • test_wait3
  • test_time
  • test_cgi
  • test_mimetypes
  • test_raise
  • test_struct
  • test_codecencodings_jp
  • test_sys
  • test_xml_dom_minicompat
  • test_threading_local
  • test_xmlrpc
  • test_strftime
  • test_tomllib
  • test_colorsys
  • test___future__
  • test_dynamicclassattribute
  • test_threading
  • test_baseexception
  • test_coroutines
  • test_enumerate
  • test_imaplib
  • test_sys_setprofile
  • test_eof
  • test_codecmaps_jp
  • test_asyncore
  • test_osx_env
  • test_smtpnet
  • test_http_cookiejar
  • test_pyexpat
  • test_string
  • test_xml_etree_c
  • test_sysconfig
  • test_queue
  • test_httpservers
  • test_profile
  • test_json
  • test_range
  • test_typing
  • test_socketserver
  • test_compile
  • test_traceback
  • test_deque
  • test_strptime
  • test_thread
  • test_multiprocessing_spawn
  • test_weakset
  • test_importlib
  • test_format
  • test_uu
  • test_shelve
  • test_codecencodings_tw
  • test_pathlib
  • test_codeop
  • test_py_compile
  • test_code_module
  • test_dbm
  • test_abc
  • test_super
  • test_spwd
  • test_generator_stop
  • test_named_expressions
  • test_lib2to3
  • test_repl
  • test_zipimport_support
  • test_pyclbr
  • test_heapq
  • test__xxsubinterpreters
  • test_select
  • test_startfile
  • test_unicode_file
  • test_flufl
  • test_generators
  • test_gc
  • test_modulefinder
  • test_sort
  • test_exceptions
  • test_urllib2_localnet
  • test_script_helper
  • test_call
  • test_contains
  • test__osx_support
  • test_pkgutil
  • test_idle
  • test_atexit
  • test_xml_etree
  • test_stat
  • test_warnings
  • test_zipimport
  • test_bufio
  • test_support
  • test_runpy
  • test_ipaddress
  • test_pydoc
  • test_metaclass
  • test_dbm_gnu
  • test_bytes
  • test_html
  • test_tuple
  • test_import
  • test_richcmp
  • test_sqlite3
  • test_type_annotations
  • test_codecmaps_kr
  • test_threadsignals
  • test_future4
  • test_docxmlrpc
  • test_picklebuffer
  • test_genericclass
  • test_ioctl
  • test_wait4
  • test_setcomps
  • test_popen
  • test_patma
  • test_asyncio
  • test_doctest2
  • test_set
  • test_aifc
  • test_poplib
  • test_finalization
  • test_cmath
  • test__locale
  • test_yield_from
  • test_bool
  • test_future5
  • test_dis
  • test_hmac
  • test_pow
  • test_exception_hierarchy
  • test_structseq
  • test_fileinput
  • test_socket
  • test_timeout
  • test_doctest
  • test_posixpath
  • test_devpoll
  • test_curses
  • test_functools
  • test_mmap
  • test_concurrent_futures
  • test_bisect
  • test_ttk_textonly
  • test_configparser
  • test_int_literal
  • test_defaultdict
  • test_ftplib
  • test_getpass
  • test_ast
  • test_re
  • test_errno
  • test_subclassinit
  • test_charmapcodec
  • test_getpath
  • test_xxtestfuzz
  • test_launcher
  • test_graphlib
  • test_context
  • test_tracemalloc
  • test_pickletools
  • test_decorators
  • test_smtpd
  • test_marshal
  • test_multiprocessing_fork

Failed subtests:

  • test_varargs - test.test_call.TestCallingConventions.test_varargs
  • test_varargs_keywords - test.test_call.TestCallingConventions.test_varargs_keywords
  • test_fastcall_keywords_ext - test.test_call.TestCallingConventions.test_fastcall_keywords_ext
  • test_varargs_keywords_ext - test.test_call.TestCallingConventions.test_varargs_keywords_ext
  • test_fastcall - test.test_call.TestCallingConventions.test_fastcall
  • test_fastcall - test.test_call.FastCallTests.test_fastcall
  • test_fastcall_ext - test.test_call.TestCallingConventions.test_fastcall_ext
  • test_varargs_ext - test.test_call.TestCallingConventions.test_varargs_ext
  • test_output_file_when_changing_directory - test.test_profile.ProfileTest.test_output_file_when_changing_directory
  • test_noargs_ext - test.test_call.TestCallingConventions.test_noargs_ext
  • test_o_ext - test.test_call.TestCallingConventions.test_o_ext
  • test_fastcall_keywords - test.test_call.TestCallingConventions.test_fastcall_keywords
  • test_vectorcall_dict - test.test_call.FastCallTests.test_vectorcall_dict
  • test_noargs - test.test_call.TestCallingConventions.test_noargs
  • test_o - test.test_call.TestCallingConventions.test_o
  • test_vectorcall - test.test_call.FastCallTests.test_vectorcall

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

== Tests result: FAILURE then FAILURE ==

410 tests OK.

10 slowest tests:

  • test_subprocess: 2 min 2 sec
  • test_tokenize: 1 min 35 sec
  • test_unparse: 1 min 19 sec
  • test_io: 58.1 sec
  • test_unicodedata: 50.2 sec
  • test_compileall: 42.7 sec
  • test_capi: 38.8 sec
  • test_venv: 38.2 sec
  • test_gdb: 34.3 sec
  • test_weakref: 29.4 sec

1 test failed:
test_call

25 tests skipped:
test___all__ test_check_c_globals test_clinic
test_concurrent_futures test_crypt test_devpoll test_distutils
test_idle test_ioctl test_kqueue test_launcher test_msilib
test_multiprocessing_fork test_multiprocessing_forkserver
test_multiprocessing_spawn test_peg_generator test_startfile
test_tix test_tk test_tools test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

191 re-run tests:
test___future__ test__locale test__osx_support
test__xxsubinterpreters test_abc test_aifc test_asdl_parser
test_ast test_asynchat test_asyncio test_asyncore test_atexit
test_audit test_baseexception test_bisect test_bool test_bufio
test_bytes test_call test_cgi test_charmapcodec test_class
test_cmath test_code_module test_codecencodings_iso2022
test_codecencodings_jp test_codecencodings_tw test_codecmaps_jp
test_codecmaps_kr test_codeop test_colorsys test_compare
test_compile test_concurrent_futures test_configparser
test_contains test_context test_contextlib test_coroutines
test_crashers test_crypt test_curses test_dbm test_dbm_gnu
test_decorators test_defaultdict test_deque test_devpoll test_dict
test_dis test_doctest test_doctest2 test_docxmlrpc
test_dynamicclassattribute test_enumerate test_eof test_errno
test_exception_hierarchy test_exceptions test_fileinput
test_finalization test_flufl test_format test_ftplib
test_functools test_future4 test_future5 test_gc
test_generator_stop test_generators test_genericclass test_getpass
test_getpath test_graphlib test_gzip test_hash test_heapq
test_hmac test_html test_http_cookiejar test_http_cookies
test_httpservers test_idle test_imaplib test_imghdr test_import
test_importlib test_int_literal test_ioctl test_ipaddress
test_json test_launcher test_lib2to3 test_logging test_marshal
test_metaclass test_mimetypes test_minidom test_mmap
test_modulefinder test_msilib test_multiprocessing_fork
test_multiprocessing_main_handling test_multiprocessing_spawn
test_named_expressions test_osx_env test_pathlib test_patma
test_pickle test_picklebuffer test_pickletools test_pkgutil
test_platform test_popen test_poplib test_posixpath test_pow
test_profile test_py_compile test_pyclbr test_pydoc test_pyexpat
test_queue test_raise test_range test_re test_repl test_richcmp
test_runpy test_script_helper test_select test_set test_setcomps
test_shelve test_signal test_smtpd test_smtpnet test_socket
test_socketserver test_sort test_spwd test_sqlite3 test_startfile
test_stat test_strftime test_string test_strptime test_struct
test_structseq test_subclassinit test_sundry test_super
test_support test_sys test_sys_setprofile test_sysconfig
test_tempfile test_thread test_threading test_threading_local
test_threadsignals test_time test_timeout test_tomllib
test_traceback test_tracemalloc test_ttk_textonly test_tuple
test_type_annotations test_typing test_unicode_file test_urllib
test_urllib2_localnet test_urllib_response test_uu test_wait3
test_wait4 test_warnings test_wave test_weakset test_winconsoleio
test_xml_dom_minicompat test_xml_etree test_xml_etree_c
test_xmlrpc test_xxlimited test_xxtestfuzz test_yield_from
test_zipfile64 test_zipimport test_zipimport_support

Total duration: 24 min 32 sec

Click to see traceback logs
TracebackFormatTests.test_print_exception_bad_type_python) ... ok


TracebackException_ExceptionGroups.test_exception_group_format_exception_only) ... ok


TracebackErrorCaretTests.test_multiline_method_call_a) ... ok


TracebackCases.test_encoded_file) ... ok


TracebackFormatTests.test_traceback_format_with_cleared_frames) ... ok


TracebackErrorCaretTests.test_multiline_method_call_c) ... ok


TracebackWithFile.test_distb_explicit_arg) ... ok


TracebackCases.test_format_exception_only_bad__str__) ... ok


TracebackTests.test_unencodable_filename) ... ok


Traceback.test_repr) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 548, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {}) != (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {})


Traceback.test_distb_explicit_arg) ... ok


TracebackTests.test_nonexistent_module) ... ok


Traceback.test_distb_last_traceback) ... ok


TracebackFormatTests.test_stack_format) ... ok


TracebackCases.test_clear) ... ok


TracebackErrorLocationCaretTests.test_secondary_caret_not_elided) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ()) != (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ())


TracebackTests.test_import_bug) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {}) != (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {})


TracebackErrorLocationCaretTests.test_decorator_application_lineno_correct) ... ok


TracebackErrorCaretTests.test_caret_multiline_expression_syntax_error) ... ok


TracebackWithFile.test_distb_empty) ... ok


TracebackCases.test_recursion_error_during_traceback) ... ok


TracebackErrorLocationCaretTests.test_traceback_very_long_line) ... ok


TracebackFormatTests.test_format_stack) ... ok


TracebackErrorCaretTests.test_caret_for_binary_operators_two_char) ... ok


TracebackCases.test_print_exception) ... ok


TracebackErrorLocationCaretTests.test_caret_multiline_expression) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 251, in test_o
    self.assertEqual(self.obj.meth_o(1), (self.expected_self, 1))
AssertionError: Tuples differ: (<mod[92 chars]nux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 1) != (<mod[92 chars]nux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 1)


TracebackTests.test_broken_submodule) ... ok


TracebackFormatTests.test_unhashable) ... ok


TracebackFormatTests.test_recursive_traceback_cpython_internal) ... ok


TracebackException.test_compact_no_cause) ... ok


TracebackCases.test_format_exception_exc) ... ok


TracebackTests.test_nonexistent_module_nested) ... ok


Traceback.test_distb_empty) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'> != <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>


TracebackErrorLocationCaretTests.test_traceback_specialization_with_syntax_error) ... ok


TracebackErrorCaretTests.test_caret_for_binary_operators) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 339, in test_fastcall_keywords_ext
    self.assertEqual(
AssertionError: Tuples differ: (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4}) != (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4})


TracebackCases.test_print_exception_exc) ... ok


TracebackErrorLocationCaretTests.test_specialization_variations) ... ok


TracebackTests.test_broken_parent) ... ok


TracebackException.test_lookup_lines) ... ok


TracebackAttr (test.test_exceptions.ExceptionTests.testNoneClearsTracebackAttr) ... ok


TracebackErrorCaretTests.test_caret_in_type_annotation) ... ok


TracebackErrorLocationCaretTests.test_multiline_method_call_a) ... ok


TracebackErrorCaretTests.test_specialization_variations) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 519, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {}) != (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {})


TracebackErrorLocationCaretTests.test_basic_caret) ... ok


TracebackErrorCaretTests.test_caret_multiline_expression_bin_op) ... ok


TracebackException.test_comparison_equivalent_exceptions_are_equal) ... ok


Traceback (test.test_exceptions.ExceptionTests.testWithTraceback) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 227, in test_varargs_ext
    self.assertEqual(
AssertionError: Tuples differ: (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3)) != (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3))


TracebackErrorCaretTests.test_decorator_application_lineno_correct) ... ok


TracebackException.test_comparison_basic) ... ok


TracebackCases.test_caret) ... ok


TracebackCases.test_format_exception_only_exc) ... ok


TracebackTests.test_syntax_error) ... ok


TracebackException.test_comparison_params_variations) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123) != (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123)


TracebackType.test_attrs) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2)) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2))


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {}) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {})


TracebackErrorLocationCaretTests.test_caret_in_type_annotation) ... ok


TracebackFormatTests.test_traceback_format) ... ok


TracebackException.test_no_refs_to_exception_and_traceback_objects) ... ok


TracebackErrorCaretTests.test_basic_caret) ... ok


TracebackFormatTests.test_exception_group_deep_recursion_capi) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 285, in test_noargs
    self.assertEqual(self.obj.meth_noargs(), self.expected_self)
AssertionError: <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'> != <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>


TracebackErrorLocationCaretTests.test_caret_exception_group) ... ok


Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/__main__.py", line 2, in <module>
    main()
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 763, in main
    Regrtest().main(tests=tests, **kwargs)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 701, in main
    self._main(tests, kwargs)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 750, in _main
    self.save_xml_result()
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 597, in save_xml_result
    root.append(suite)
TypeError: append() argument must be xml.etree.ElementTree.Element, not Element


TracebackCases.test_extract_stack) ... ok


TracebackTests.test_exec_failure_nested) ... ok


TracebackCases.test_exception_is_None) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'> != <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>


TracebackCases.test_no_caret_with_no_debug_ranges_flag) ... ok


TracebackException_ExceptionGroups.test_exception_group_format) ... ok


TracebackException.test_cause) ... ok


TracebackErrorCaretTests.test_caret_multiline_expression) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 239, in test_varargs_keywords
    self.assertEqual(
AssertionError: Tuples differ: (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4}) != (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4})


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 245, in test_varargs_keywords_ext
    self.assertEqual(
AssertionError: Tuples differ: (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4}) != (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4})


TracebackCases.test_base_exception) ... ok


TracebackType.test_constructor) ... ok


TracebackException_ExceptionGroups.test_exception_group_construction) ... ok


Traceback (test.test_exceptions.ExceptionTests.testInvalidTraceback) ... ok


TracebackFormatTests.test_print_exception_bad_type_capi) ... ok


TracebackException.test_limit) ... ok


TracebackException.test_locals) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {}) != (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {})


TracebackErrorLocationCaretTests.test_caret_for_binary_operators) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'> != <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 519, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[109 chars]testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'x': 'y'}) != (<mod[109 chars]testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'x': 'y'})


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {}) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {})


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2)) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2))


TracebackTests.test_broken_from) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ()) != (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ())


TracebackCases.test_nocaret) ... ok


TracebackErrorCaretTests.test_multiline_method_call_b) ... ok


TracebackCases.test_print_traceback_at_exit) ... ok


TracebackException.test_long_context_chain) ... ok


TracebackErrorLocationCaretTests.test_multiline_method_call_c) ... ok


TracebackException.test_no_locals) ... ok


TracebackErrorLocationCaretTests.test_caret_for_binary_operators_two_char) ... ok


TracebackErrorCaretTests.test_caret_for_subscript) ... ok


Traceback.test_accepts_traceback) ... ok


Traceback.test_sets_traceback) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 254, in test_o_ext
    self.assertEqual(self.obj.meth_o(*[1]), (self.expected_self, 1))
AssertionError: Tuples differ: (<mod[92 chars]nux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 1) != (<mod[92 chars]nux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 1)


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 548, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[105 chars]11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {'x': 'y'}) != (<mod[105 chars]11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {'x': 'y'})


TracebackCases.test_signatures) ... ok


TracebackTests.test_broken_parent_from) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2)) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2))


TracebackErrorCaretTests.test_traceback_very_long_line) ... ok


TracebackErrorLocationCaretTests.test_caret_multiline_expression_bin_op) ... ok


TracebackException.test_compact_with_cause) ... ok


TracebackErrorLocationCaretTests.test_multiline_method_call_b) ... ok


TracebackErrorLocationCaretTests.test_line_with_unicode) ... ok


TracebackErrorCaretTests.test_traceback_specialization_with_syntax_error) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {}) != (<mod[97 chars]86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {})


TracebackException.test_traceback_header) ... ok


TracebackCases.test_bad_indentation) ... ok


TracebackException_ExceptionGroups.test_max_group_depth) ... ok


Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/regrtest.py", line 47, in <module>
    _main()
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/regrtest.py", line 43, in _main
    main()
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 763, in main
    Regrtest().main(tests=tests, **kwargs)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 688, in main
    test_cwd = self.create_temp_dir()
               ^^^^^^^^^^^^^^^^^^^^^^
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/libregrtest/main.py", line 645, in create_temp_dir
    os.makedirs(self.tmp_dir, exist_ok=True)
  File "<frozen os>", line 225, in makedirs
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/build/test_python_1834898æ'


TracebackException.test_from_exception) ... ok


Traceback (test.test_zipimport.UncompressedZipImportTestCase.testTraceback) ... ok


TracebackErrorLocationCaretTests.test_caret_for_subscript) ... ok


TracebackException.test_unhashable) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ()) != (<mod[93 chars]ux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, ())


TracebackException.test_context) ... ok


TracebackErrorLocationCaretTests.test_caret_multiline_expression_syntax_error) ... ok


TracebackException_ExceptionGroups.test_comparison) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 548, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[109 chars]testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'x': 'y'}) != (<mod[109 chars]testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'x': 'y'})


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 221, in test_varargs
    self.assertEqual(
AssertionError: Tuples differ: (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3)) != (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3))


Traceback (test.test_zipimport.CompressedZipImportTestCase.testTraceback) ... ok


TracebackTests.test_exec_failure) ... ok


TracebackErrorCaretTests.test_secondary_caret_not_elided) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None) != (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None)


TracebackException_ExceptionGroups.test_max_group_width) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_profile.py", line 115, in test_output_file_when_changing_directory
    with temp_dir() as tmpdir, change_cwd(tmpdir):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/contextlib.py", line 137, in __enter__
    return next(self.gen)
           ^^^^^^^^^^^^^^
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/support/os_helper.py", line 462, in temp_dir
    path = tempfile.mkdtemp()
           ^^^^^^^^^^^^^^^^^^
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp3myu89hb'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 509, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None) != (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None)


TracebackException.test_print) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 333, in test_fastcall_keywords
    self.assertEqual(
AssertionError: Tuples differ: (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4}) != (<mod[115 chars]pi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {'a': 3, 'b': 4})


TracebackCases.test_no_caret_with_no_debug_ranges_flag_python_traceback) ... ok


TracebackFormatTests.test_exception_group_deep_recursion_traceback) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 519, in test_vectorcall_dict
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[105 chars]11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {'x': 'y'}) != (<mod[105 chars]11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (), {'x': 'y'})


TracebackWithFile.test_distb_last_traceback) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 315, in test_fastcall
    self.assertEqual(
AssertionError: Tuples differ: (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3)) != (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3))


TracebackErrorCaretTests.test_caret_exception_group) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 548, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None) != (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None)


TracebackFormatTests.test_recursive_traceback_python) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 495, in test_fastcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123) != (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123)


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None) != (<mod[103 chars]3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), None)


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 321, in test_fastcall_ext
    self.assertEqual(
AssertionError: Tuples differ: (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3)) != (<mod[100 chars]64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2, 3))


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 288, in test_noargs_ext
    self.assertEqual(self.obj.meth_noargs(*[]), self.expected_self)
AssertionError: <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'> != <modu[87 chars]b.linux-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {}) != (<mod[101 chars]4-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, (1, 2), {})


TracebackFormatTests.test_print_stack) ... ok


TracebackErrorCaretTests.test_line_with_unicode) ... ok


Traceback (most recent call last):
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 528, in test_vectorcall
    self.check_result(result, expected)
  File "/buildbot/buildarea/3.11.pablogsal-arch-x86_64.asan/build/Lib/test/test_call.py", line 487, in check_result
    self.assertEqual(result, expected)
AssertionError: Tuples differ: (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123) != (<mod[94 chars]x-x86_64-3.11/_testcapi.cpython-311-x86_64-linux-gnu.so'>, 123)


TracebackException.test_smoke) ... ok

@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

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

Hi! The buildbot AMD64 Arch Linux Asan 3.10 has failed when building commit 455b494.

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/all/#builders/633/builds/770) and take a look at the build logs.
  4. Check if the failure is related to this commit (455b494) 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/all/#builders/633/builds/770

Failed tests:

  • test_venv

Failed subtests:

  • test_with_pip - test.test_venv.EnsurePipTest

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

== Tests result: FAILURE then FAILURE ==

403 tests OK.

10 slowest tests:

  • test_unparse: 2 min 11 sec
  • test_subprocess: 1 min 54 sec
  • test_tokenize: 1 min 36 sec
  • test_asyncio: 1 min 11 sec
  • test_signal: 1 min 10 sec
  • test_lib2to3: 1 min 10 sec
  • test_pydoc: 59.6 sec
  • test_unicodedata: 54.0 sec
  • test_io: 47.2 sec
  • test_compileall: 39.6 sec

1 test failed:
test_venv

23 tests skipped:
test___all__ test_check_c_globals test_clinic
test_concurrent_futures test_crypt test_devpoll test_idle
test_ioctl test_kqueue test_msilib test_multiprocessing_fork
test_multiprocessing_forkserver test_multiprocessing_spawn
test_peg_generator test_startfile test_tix test_tk test_tools
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_venv

Total duration: 15 min 37 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 548, in nicer_error
    yield
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 483, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 428, in create
    builder.create(env_dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 75, in create
    self._setup_pip(context)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 318, in _setup_pip
    subprocess.check_output(cmd, stderr=subprocess.STDOUT)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/subprocess.py", line 420, in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/subprocess.py", line 524, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['/tmp/tmp6hqrr3u4/bin/python', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 548, in nicer_error
    yield
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 483, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 428, in create
    builder.create(env_dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 75, in create
    self._setup_pip(context)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/venv/__init__.py", line 318, in _setup_pip
    subprocess.check_output(cmd, stderr=subprocess.STDOUT)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/subprocess.py", line 420, in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/subprocess.py", line 524, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['/tmp/tmpd3m3fwuk/bin/python', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 562, in test_with_pip
    self.do_test_with_pip(False)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 482, in do_test_with_pip
    with self.nicer_error():
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/contextlib.py", line 153, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan/build/Lib/test/test_venv.py", line 551, in nicer_error
    err = exc.stderr.decode(errors="replace")
AttributeError: 'NoneType' object has no attribute 'decode'

@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

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

Hi! The buildbot AMD64 Arch Linux Asan Debug 3.10 has failed when building commit 455b494.

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/all/#builders/621/builds/773) and take a look at the build logs.
  4. Check if the failure is related to this commit (455b494) 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/all/#builders/621/builds/773

Failed tests:

  • test_dbm
  • test_posixpath
  • test_source_encoding
  • test_eof
  • test_venv
  • test_string_literals
  • test_mailbox
  • test_zipimport_support

Failed subtests:

  • test_anydbm_not_existing - test.test_dbm.TestCase_dumb
  • test_first_non_utf8_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_realpath_strict - test.test_posixpath.PosixPathTest
  • test_whichdb_ndbm - test.test_dbm.WhichDBTestCase
  • test_file_latin9 - test.test_string_literals.TestLiterals
  • test_anydbm_creation_n_file_exists_with_invalid_contents - test.test_dbm.TestCase_dumb
  • test_len - test.test_mailbox.TestMaildir
  • test_isdir - test.test_posixpath.PosixCommonTest
  • test_anydbm_creation_n_file_exists_with_invalid_contents - test.test_dbm.TestCase_gnu
  • test_double_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_file_utf8 - test.test_string_literals.TestLiterals
  • test_realpath_basic - test.test_posixpath.PosixPathTest
  • test_default_coding - test.test_source_encoding.FileSourceEncodingTest
  • test_refresh_after_safety_period - test.test_mailbox.TestMaildir
  • test_list_folders - test.test_mailbox.TestMH
  • test_lock_unlock - test.test_mailbox.TestMH
  • test_doctest_issue4197 - test.test_zipimport_support.ZipSupportTests
  • test_popitem - test.test_mailbox.TestMH
  • test_popitem_and_flush_twice - test.test_mailbox.TestMaildir
  • test_second_non_utf8_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_pdb_issue4201 - test.test_zipimport_support.ZipSupportTests
  • test_pop - test.test_mailbox.TestMH
  • test_anydbm_read - test.test_dbm.TestCase_dumb
  • test_anydbm_read - test.test_dbm.TestCase_gnu
  • test_with_pip - test.test_venv.EnsurePipTest
  • test_abspath_issue3426 - test.test_posixpath.PosixCommonTest
  • test_realpath_resolve_before_normalizing - test.test_posixpath.PosixPathTest
  • test_set_item - test.test_mailbox.TestMH
  • test_eval_str_incomplete - test.test_string_literals.TestLiterals
  • test_utf8_bom - test.test_source_encoding.FileSourceEncodingTest
  • test_file_latin_1 - test.test_string_literals.TestLiterals
  • test_anydbm_not_existing - test.test_dbm.TestCase_ndbm
  • test_values - test.test_mailbox.TestMaildir
  • test_lookup - test.test_mailbox.TestMaildir
  • test_remove - test.test_mailbox.TestMH
  • test_crcrcrlf - test.test_source_encoding.FileSourceEncodingTest
  • test_EOFS_with_file - test.test_eof.EOFTestCase
  • test_third_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_eval_str_u - test.test_string_literals.TestLiterals
  • test_eval_bytes_normal - test.test_string_literals.TestLiterals
  • test_eval_str_normal - test.test_string_literals.TestLiterals
  • test_file_utf_8 - test.test_string_literals.TestLiterals
  • test_keys - test.test_dbm.TestCase_dumb
  • test_keys - test.test_dbm.TestCase_gnu
  • test_anydbm_access - test.test_dbm.TestCase_ndbm
  • test_anydbm_creation - test.test_dbm.TestCase_dumb
  • test_anydbm_keys - test.test_dbm.TestCase_ndbm
  • test_crcrcrlf2 - test.test_source_encoding.FileSourceEncodingTest
  • test_list_folders - test.test_mailbox.TestMaildir
  • test_lock_unlock - test.test_mailbox.TestMaildir
  • test_anydbm_creation - test.test_dbm.TestCase_gnu
  • test_update - test.test_mailbox.TestMH
  • test_popitem - test.test_mailbox.TestMaildir
  • test_eval_str_raw - test.test_string_literals.TestLiterals
  • test_empty_value - test.test_dbm.TestCase_dumb
  • test_crcrlf - test.test_source_encoding.FileSourceEncodingTest
  • test_empty_value - test.test_dbm.TestCase_gnu
  • test_anydbm_modification - test.test_dbm.TestCase_ndbm
  • test_pop - test.test_mailbox.TestMaildir
  • test_error - test.test_dbm.TestCase_dumb
  • test_eval_bytes_incomplete - test.test_string_literals.TestLiterals
  • test_error - test.test_dbm.TestCase_gnu
  • test_nonascii_abspath - test.test_posixpath.PosixCommonTest
  • test_realpath_symlink_loops - test.test_posixpath.PosixPathTest
  • test_file_iso_8859_1 - test.test_string_literals.TestLiterals
  • test_eval_bytes_raw - test.test_string_literals.TestLiterals
  • test_set_item - test.test_mailbox.TestMaildir
  • test_crlf - test.test_source_encoding.FileSourceEncodingTest
  • test_anydbm_creation_n_file_exists_with_invalid_contents - test.test_dbm.TestCase_ndbm
  • test_realpath_resolve_parents - test.test_posixpath.PosixPathTest
  • test_doctest_main_issue4197 - test.test_zipimport_support.ZipSupportTests
  • test_utf8_bom_and_utf8_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_first_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_keys - test.test_dbm.TestCase_ndbm
  • test_remove - test.test_mailbox.TestMaildir
  • test_anydbm_read - test.test_dbm.TestCase_ndbm
  • test_file_utf_8_error - test.test_string_literals.TestLiterals
  • test_realpath_deep_recursion - test.test_posixpath.PosixPathTest
  • test_len - test.test_mailbox.TestMH
  • test_set_MM - test.test_mailbox.TestMaildir
  • test_realpath_resolve_first - test.test_posixpath.PosixPathTest
  • test_eval_bytes_invalid_escape - test.test_string_literals.TestLiterals
  • test_error - test.test_dbm.TestCase_ndbm
  • test_anydbm_not_existing - test.test_dbm.TestCase_gnu
  • test_reread - test.test_mailbox.TestMaildir
  • test_update - test.test_mailbox.TestMaildir
  • test_popitem_and_flush_twice - test.test_mailbox.TestMH
  • test_inspect_getsource_issue4223 - test.test_zipimport_support.ZipSupportTests
  • test_realpath_symlink_loops_strict - test.test_posixpath.PosixPathTest
  • test_double_coding_same_line - test.test_source_encoding.FileSourceEncodingTest
  • test_template - test.test_string_literals.TestLiterals
  • test_refresh - test.test_mailbox.TestMaildir
  • test_eval_str_invalid_escape - test.test_string_literals.TestLiterals
  • test_ismount_non_existent - test.test_posixpath.PosixPathTest
  • test_anydbm_access - test.test_dbm.TestCase_dumb
  • test_anydbm_access - test.test_dbm.TestCase_gnu
  • test_anydbm_keys - test.test_dbm.TestCase_dumb
  • test_anydbm_keys - test.test_dbm.TestCase_gnu
  • test_whichdb - test.test_dbm.WhichDBTestCase
  • test_anydbm_creation - test.test_dbm.TestCase_ndbm
  • test_anydbm_modification - test.test_dbm.TestCase_dumb
  • test_isfile - test.test_posixpath.PosixCommonTest
  • test_realpath_repeated_indirect_symlinks - test.test_posixpath.PosixPathTest
  • test_values - test.test_mailbox.TestMH
  • test_second_coding_line - test.test_source_encoding.FileSourceEncodingTest
  • test_anydbm_modification - test.test_dbm.TestCase_gnu
  • test_empty_value - test.test_dbm.TestCase_ndbm
  • test_uppercase_prefixes - test.test_string_literals.TestLiterals

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

== Tests result: FAILURE then FAILURE ==

396 tests OK.

10 slowest tests:

  • test_unparse: 3 min 30 sec
  • test_subprocess: 2 min 55 sec
  • test_tokenize: 2 min 28 sec
  • test_capi: 1 min 51 sec
  • test_lib2to3: 1 min 48 sec
  • test_gdb: 1 min 41 sec
  • test_asyncio: 1 min 36 sec
  • test_unicodedata: 1 min 36 sec
  • test_signal: 1 min 12 sec
  • test_pickle: 1 min 2 sec

8 tests failed:
test_dbm test_eof test_mailbox test_posixpath test_source_encoding
test_string_literals test_venv test_zipimport_support

23 tests skipped:
test___all__ test_check_c_globals test_clinic
test_concurrent_futures test_crypt test_devpoll test_idle
test_ioctl test_kqueue test_msilib test_multiprocessing_fork
test_multiprocessing_forkserver test_multiprocessing_spawn
test_peg_generator test_startfile test_tix test_tk test_tools
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

8 re-run tests:
test_dbm test_eof test_mailbox test_posixpath test_source_encoding
test_string_literals test_venv test_zipimport_support

Total duration: 21 min 59 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmplem70kc0'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmprrkwv420'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpq0yt7uyg'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 486, in test_realpath_deep_recursion
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 557, in test_realpath_resolve_first
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 198, in test_double_coding_same_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp25jtzl6p'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 235, in test_crcrcrlf2
    out = self.check_script_output(src, br"'\n\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpzefhamqc'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 203, in test_first_non_utf8_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpm2n3eqoz'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 230, in test_crcrcrlf
    out = self.check_script_output(src, br"'\n\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpb5l6mg5c'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 430, in test_realpath_symlink_loops_strict
    os.symlink(ABSTFN, ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_eof.py", line 61, in test_line_continuation_EOF_from_file_bpo2180
    with os_helper.temp_dir() as temp_dir:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpyiuc2zv1'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 509, in test_realpath_resolve_parents
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 213, in test_utf8_bom
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpsv9ihguy'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 186, in test_third_coding_line
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpt85mfgsa'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 53, in setUp
    self.env_dir = os.path.realpath(tempfile.mkdtemp())
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp8pj_w_i_'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 186, in test_ismount_non_existent
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 388, in test_realpath_symlink_loops
    os.symlink(ABSTFN, ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpth66o9yg'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 167, in test_default_coding
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpohyj6u41'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 193, in test_double_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_n6hn4l0'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 223, in test_pdb_issue4201
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpx9vsdkv4'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_eof.py", line 34, in test_EOFS_with_file
    with os_helper.temp_dir() as temp_dir:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7km678dl'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7dn1_fyx'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpy1lbykkb'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 532, in test_realpath_resolve_before_normalizing
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmppts1utgl'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 210, in test_isfile
    os.mkdir(filename)
OSError: [Errno 28] No space left on device: '@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpfoklv182'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 471, in test_realpath_repeated_indirect_symlinks
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpeipwn4cm'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 198, in test_double_coding_same_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp59f_pd49'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 594, in setUp
    TestMailbox.setUp(self)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 591, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/mailbox.py", line 282, in __init__
    os.mkdir(self._path, 0o700)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 81, in test_inspect_getsource_issue4223
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp9iyq3lx4'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 193, in test_double_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp4kvde5bq'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 222, in test_crlf
    out = self.check_script_output(src, br"'\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpv3jwta3w'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 365, in test_realpath_strict
    os.symlink(ABSTFN+"1", ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ1' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 532, in test_realpath_resolve_before_normalizing
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 121, in test_doctest_issue4197
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpw_d1ikmm'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmphf0mifg2'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmppwj1p_zk'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 121, in test_doctest_issue4197
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpjtletg6a'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpo01m4rzm'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 430, in test_realpath_symlink_loops_strict
    os.symlink(ABSTFN, ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpky49kz7x'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 222, in test_crlf
    out = self.check_script_output(src, br"'\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmph98i_tmj'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 594, in setUp
    TestMailbox.setUp(self)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 591, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/mailbox.py", line 282, in __init__
    os.mkdir(self._path, 0o700)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/test_python_worker_1994092æ/@test_1994092_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 57, in setUp
    self._box = self._factory(self._path)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_mailbox.py", line 1170, in <lambda>
    _factory = lambda self, path, factory=None: mailbox.MH(path, factory)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/mailbox.py", line 943, in __init__
    os.mkdir(self._path, 0o700)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpyl915t6r'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 353, in test_realpath_basic
    os.symlink(ABSTFN+"1", ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ1' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpwd31i83s'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_cjmo2po'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 209, in test_second_non_utf8_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmprhno55df'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 185, in setUp
    setup_test_dir()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 37, in setup_test_dir
    os.mkdir(dirname)
OSError: [Errno 28] No space left on device: '@test_1994286_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 509, in test_realpath_resolve_parents
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 186, in test_third_coding_line
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_nbg6vp8'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 203, in test_first_non_utf8_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_tdhaco4'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 548, in nicer_error
    yield
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 483, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/venv/__init__.py", line 428, in create
    builder.create(env_dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/venv/__init__.py", line 75, in create
    self._setup_pip(context)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/venv/__init__.py", line 318, in _setup_pip
    subprocess.check_output(cmd, stderr=subprocess.STDOUT)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/subprocess.py", line 420, in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/subprocess.py", line 524, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['/tmp/tmpgahuurl4/bin/python', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 81, in test_inspect_getsource_issue4223
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp6r9e5rng'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 185, in setUp
    setup_test_dir()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 37, in setup_test_dir
    os.mkdir(dirname)
OSError: [Errno 28] No space left on device: '@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp5pu6ipsu'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpaiz0xfb7'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 492, in test_nonascii_abspath
    with os_helper.temp_cwd(name):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 447, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 385, in temp_dir
    os.mkdir(path)
OSError: [Errno 28] No space left on device: b'@test_1978880_tmp\xe7w\xf0'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 230, in test_crcrcrlf
    out = self.check_script_output(src, br"'\n\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpzs34d200'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp1wh3uab3'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 226, in test_crcrlf
    out = self.check_script_output(src, br"'\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp5tdj6t31'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 153, in setUp
    setup_test_dir()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 37, in setup_test_dir
    os.mkdir(dirname)
OSError: [Errno 28] No space left on device: '@test_1994286_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7qkinkfs'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 235, in test_crcrcrlf2
    out = self.check_script_output(src, br"'\n\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_lp_6mpd'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 172, in test_first_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmprfm1s_4g'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 196, in test_doctest_main_issue4197
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpzugcslgi'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 486, in test_realpath_deep_recursion
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_eof.py", line 61, in test_line_continuation_EOF_from_file_bpo2180
    with os_helper.temp_dir() as temp_dir:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpv4oarc82'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 492, in test_nonascii_abspath
    with os_helper.temp_cwd(name):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 447, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 385, in temp_dir
    os.mkdir(path)
OSError: [Errno 28] No space left on device: b'@test_1994306_tmp\xe7w\xf0'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 172, in test_first_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpnd684ddn'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_eof.py", line 34, in test_EOFS_with_file
    with os_helper.temp_dir() as temp_dir:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp3vvcugyk'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 223, in test_pdb_issue4201
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpq5kzyjhp'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpm1pq0g65'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpvtlf5_9k'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 213, in test_utf8_bom
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpk9jrkkna'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpw2usdevz'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 167, in test_default_coding
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpui_uwpg6'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 178, in test_second_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpwufjc0nc'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 153, in setUp
    setup_test_dir()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_dbm.py", line 37, in setup_test_dir
    os.mkdir(dirname)
OSError: [Errno 28] No space left on device: '@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp2vcul378'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmptldi4u2m'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpxv1uyseu'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 218, in test_utf8_bom_and_utf8_coding_line
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpttu73a_y'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 388, in test_realpath_symlink_loops
    os.symlink(ABSTFN, ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp71_gvn58'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp5hhwrxnf'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 365, in test_realpath_strict
    os.symlink(ABSTFN+"1", ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ1' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 562, in test_with_pip
    self.do_test_with_pip(False)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 482, in do_test_with_pip
    with self.nicer_error():
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 153, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_venv.py", line 551, in nicer_error
    err = exc.stderr.decode(errors="replace")
AttributeError: 'NoneType' object has no attribute 'decode'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpguh_wzw0'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 557, in test_realpath_resolve_first
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 218, in test_utf8_bom_and_utf8_coding_line
    self.check_script_output(src, br"'\xe4'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp_3yjim2l'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_zipimport_support.py", line 196, in test_doctest_main_issue4197
    with os_helper.temp_dir() as d:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 380, in temp_dir
    path = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpk9i0gj04'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 186, in test_ismount_non_existent
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 178, in test_second_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp3kk7dm7k'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 473, in test_abspath_issue3426
    with os_helper.temp_cwd(unicwd):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 447, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/contextlib.py", line 135, in __enter__
    return next(self.gen)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/support/os_helper.py", line 385, in temp_dir
    os.mkdir(path)
OSError: [Errno 28] No space left on device: 'çwð'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 471, in test_realpath_repeated_indirect_symlinks
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp9zz1177g'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmplopsfqbq'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp2j76p3gb'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 210, in test_isfile
    os.mkdir(filename)
OSError: [Errno 28] No space left on device: '@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_posixpath.py", line 353, in test_realpath_basic
    os.symlink(ABSTFN+"1", ABSTFN)
OSError: [Errno 28] No space left on device: '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ1' -> '/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/build/test_python_1978880æ/@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 209, in test_second_non_utf8_coding_line
    self.check_script_output(src, br"'\xc3\u20ac'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7xecgo8o'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 185, in test_isdir
    os.mkdir(filename)
OSError: [Errno 28] No space left on device: '@test_1994306_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpctkmohka'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 226, in test_crcrlf
    out = self.check_script_output(src, br"'\n\n'")
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_source_encoding.py", line 250, in check_script_output
    with tempfile.TemporaryDirectory() as tmpd:
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 819, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7cgmk_fl'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_genericpath.py", line 185, in test_isdir
    os.mkdir(filename)
OSError: [Errno 28] No space left on device: '@test_1978880_tmpæ'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/test/test_string_literals.py", line 68, in setUp
    self.tmpdir = tempfile.mkdtemp()
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64.asan_debug/build/Lib/tempfile.py", line 368, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp7tml49m6'

@bedevere-bot
Copy link

bedevere-bot commented Sep 29, 2022

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

Hi! The buildbot AMD64 Arch Linux TraceRefs 3.10 has failed when building commit 455b494.

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/all/#builders/678/builds/770) and take a look at the build logs.
  4. Check if the failure is related to this commit (455b494) 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/all/#builders/678/builds/770

Failed tests:

  • test_venv

Failed subtests:

  • test_with_pip - test.test_venv.EnsurePipTest

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

== Tests result: FAILURE then FAILURE ==

413 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 25 sec
  • test_multiprocessing_spawn: 1 min 42 sec
  • test_subprocess: 1 min 19 sec
  • test_multiprocessing_forkserver: 1 min 13 sec
  • test_unparse: 1 min 8 sec
  • test_multiprocessing_fork: 1 min 4 sec
  • test_tokenize: 1 min 2 sec
  • test_asyncio: 1 min
  • test_capi: 56.4 sec
  • test_lib2to3: 47.6 sec

1 test failed:
test_venv

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg
test_winsound test_xxlimited test_zipfile64

1 re-run test:
test_venv

Total duration: 15 min 11 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 548, in nicer_error
    yield
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 483, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 428, in create
    builder.create(env_dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 75, in create
    self._setup_pip(context)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 318, in _setup_pip
    subprocess.check_output(cmd, stderr=subprocess.STDOUT)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/subprocess.py", line 420, in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/subprocess.py", line 524, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['/tmp/tmpvbou8lfq/bin/python', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_17573f28'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 562, in test_with_pip
    self.do_test_with_pip(False)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 482, in do_test_with_pip
    with self.nicer_error():
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/contextlib.py", line 153, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 551, in nicer_error
    err = exc.stderr.decode(errors="replace")
AttributeError: 'NoneType' object has no attribute 'decode'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_b9aa78d9'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/multiprocessing/resource_tracker.py", line 209, in main
    cache[rtype].remove(name)
KeyError: '/psm_ac090af4'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 548, in nicer_error
    yield
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 483, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 428, in create
    builder.create(env_dir)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 75, in create
    self._setup_pip(context)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/venv/__init__.py", line 318, in _setup_pip
    subprocess.check_output(cmd, stderr=subprocess.STDOUT)
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/subprocess.py", line 420, in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  File "/buildbot/buildarea/3.10.pablogsal-arch-x86_64/build/Lib/subprocess.py", line 524, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['/tmp/tmpxletirn3/bin/python', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
expert-tkinter stdlib Python modules in the Lib dir type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants