Skip to content

Conversation

@millefalcon
Copy link
Contributor

@millefalcon millefalcon commented Aug 31, 2020

@ammaraskar
Fixed the f-string/str.format error description being wrong by
adding a check to see if the previous token is an underscore character:

...
if (end-pos && READ_spec(pos) == ',') {
        if (format->thousands_separators == LT_UNDERSCORE_LOCALE) {
            invalid_comma_and_underscore();
            return 0;
        }
    }
...

https://bugs.python.org/issue41681

Automerge-Triggered-By: @ericvsmith

@the-knights-who-say-ni
Copy link

Hello, and thanks for your contribution!

I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA).

CLA Missing

Our records indicate the following people have not signed the CLA:

@millefalcon

For legal reasons we need all the people listed to sign the CLA before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue.

If you have recently signed the CLA, please wait at least one business day
before our records are updated.

You can check yourself to see if the CLA has been received.

Thanks again for the contribution, we look forward to reviewing it!

Copy link
Member

@pablogsal pablogsal left a comment

Choose a reason for hiding this comment

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

Thanks for the PR, @millefalcon. Could you sign up the CLA? After that you should add a test and a NEWS entry using blurb.

@bedevere-bot
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

@millefalcon
Copy link
Contributor Author

@pablogsal I just signed the CLA :)
I am not sure where to add the test. Not sure if this should come under, Lib Modules Doc or something else ?
May a new dir under Python/test ?

@pablogsal
Copy link
Member

I am not sure where to add the test. Not sure if this should come under, Lib Modules Doc or something else ?

The test should be added in Lib/test/test_fstring.py and in Lib/test/test_format.py / Lib/test/test_string.py

@millefalcon
Copy link
Contributor Author

I am not sure where to add the test. Not sure if this should come under, Lib Modules Doc or something else ?

The test should be added in Lib/test/test_fstring.py and in Lib/test/test_format.py / Lib/test/test_string.py

Sure. Let me add that. Thanks :)

@millefalcon
Copy link
Contributor Author

@pablogsal I added the tests for f-string and format under their respective file, but not sure what to add in test_string.py ?

@pablogsal
Copy link
Member

@pablogsal I added the tests for f-string and format under their respective file, but not sure what to add in test_string.py ?

These two tests are enough! Thanks for the quick response :)

@pablogsal pablogsal requested a review from ericvsmith August 31, 2020 22:05
Copy link
Member

@pablogsal pablogsal left a comment

Choose a reason for hiding this comment

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

This looks good to me, but I would like a review from @ericvsmith if possible

@millefalcon
Copy link
Contributor Author

@pablogsal @ammaraskar Thank you for the guidance. You both have been very helpful :)

Copy link
Member

@ericvsmith ericvsmith left a comment

Choose a reason for hiding this comment

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

I don't see a test for the original error message that was reported on bpo: Cannot specify both ',' and '_'. Can you add a test for that? We need to make sure we're not breaking that.

My comment about the regex is really a nit. I'm sure that that problem exists in a lot of places in the code.

@bedevere-bot
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

@millefalcon
Copy link
Contributor Author

No problem. Thank you.

@ericvsmith ericvsmith merged commit 0d6aa7f into python:master Sep 1, 2020
@miss-islington
Copy link
Contributor

Thanks @millefalcon for the PR, and @ericvsmith for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8, 3.9.
🐍🍒⛏🤖

@bedevere-bot
Copy link

GH-22041 is a backport of this pull request to the 3.9 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 1, 2020
… 2 `,` in format specifier (pythonGH-22036)

* Fixed `f-string/str.format` error description when using two `,` in format specifier.

Co-authored-by: millefalcon <[email protected]>
(cherry picked from commit 0d6aa7f)

Co-authored-by: han-solo <[email protected]>
@miss-islington
Copy link
Contributor

Sorry, @millefalcon and @ericvsmith, I could not cleanly backport this to 3.8 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 0d6aa7f0ee38eb453bc8f73bf4830e6172be2f35 3.8

@millefalcon
Copy link
Contributor Author

millefalcon commented Sep 1, 2020

@ericvsmith There seems to be a mistake in the tests. Two tests are same . Sorry :(
The problem is two tests are tesing f'{1:,_}', while it should have been f'{1:,_}' and f'{1:_,}'

@millefalcon millefalcon deleted the fix/error branch September 1, 2020 15:13
@ericvsmith
Copy link
Member

That's my fault for not noticing. You can open another PR for that. I don't think it needs an issue.

ericvsmith pushed a commit that referenced this pull request Sep 1, 2020
… 2 `,` in format specifier (GH-22036) (GH-22041)

* Fixed `f-string/str.format` error description when using two `,` in format specifier.

Co-authored-by: millefalcon <[email protected]>
(cherry picked from commit 0d6aa7f)

Co-authored-by: han-solo <[email protected]>

Co-authored-by: han-solo <[email protected]>
@ericvsmith
Copy link
Member

Also, I haven't had time (and probably won't have time) to look at the backport to 3.8 failure.

@millefalcon
Copy link
Contributor Author

millefalcon commented Sep 1, 2020

Sure. Sorry for not being careful enough.

@bedevere-bot
Copy link

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

Hi! The buildbot s390x Fedora LTO 3.9 has failed when building commit c16a2a1.

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/83/builds/95) and take a look at the build logs.
  4. Check if the failure is related to this commit (c16a2a1) 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/83/builds/95

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

Click to see traceback logs
remote: Enumerating objects: 1        
remote: Enumerating objects: 12, done.        
remote: Counting objects:   8% (1/12)        
remote: Counting objects:  16% (2/12)        
remote: Counting objects:  25% (3/12)        
remote: Counting objects:  33% (4/12)        
remote: Counting objects:  41% (5/12)        
remote: Counting objects:  50% (6/12)        
remote: Counting objects:  58% (7/12)        
remote: Counting objects:  66% (8/12)        
remote: Counting objects:  75% (9/12)        
remote: Counting objects:  83% (10/12)        
remote: Counting objects:  91% (11/12)        
remote: Counting objects: 100% (12/12)        
remote: Counting objects: 100% (12/12), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 13 (delta 8), reused 9 (delta 8), pack-reused 1        
From https://github.com/python/cpython
 * branch                  3.9        -> FETCH_HEAD
Reset branch '3.9'

In function ‘bytearray_removeprefix_impl’,
    inlined from ‘bytearray_removeprefix’ at Objects/clinic/bytearrayobject.c.h:70:20:
Objects/bytearrayobject.c:1209:12: warning: ‘__builtin_memcmp_eq’ specified size between 9223372036854775808 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
 1209 |         && memcmp(self_start, prefix_start, prefix_len) == 0)
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In function ‘bytearray_removesuffix_impl’,
    inlined from ‘bytearray_removesuffix’ at Objects/clinic/bytearrayobject.c.h:110:20:
Objects/bytearrayobject.c:1241:12: warning: ‘__builtin_memcmp_eq’ specified size between 9223372036854775808 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
 1241 |         && memcmp(self_start + self_len - suffix_len,
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 1242 |                   suffix_start, suffix_len) == 0)
      |                   ~~~~~~~~~~~~~~~~~~~~~~~~~
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:25,
    inlined from ‘assemble’ at Python/compile.c:6053:18:
Python/compile.c:5630:23: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5630 |             *lnotab++ = 255;
      |             ~~~~~~~~~~^~~~~
Python/compile.c:5631:23: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5631 |             *lnotab++ = 0;
      |             ~~~~~~~~~~^~~
Python/compile.c:5668:19: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      |         ~~~~~~~~~~^~~
In function ‘bytearray_removeprefix_impl’,
    inlined from ‘bytearray_removeprefix’ at Objects/clinic/bytearrayobject.c.h:70:20:
Objects/bytearrayobject.c:1209:12: warning: ‘__builtin_memcmp_eq’ specified size between 9223372036854775808 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
 1209 |         && memcmp(self_start, prefix_start, prefix_len) == 0)
      |            ^
In function ‘bytearray_removesuffix_impl’,
    inlined from ‘bytearray_removesuffix’ at Objects/clinic/bytearrayobject.c.h:110:20:
Objects/bytearrayobject.c:1241:12: warning: ‘__builtin_memcmp_eq’ specified size between 9223372036854775808 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
 1241 |         && memcmp(self_start + self_len - suffix_len,
      |            ^
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:25,
    inlined from ‘assemble’ at Python/compile.c:6053:18:
Python/compile.c:5630:23: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5630 |             *lnotab++ = 255;
      |                       ^
Python/compile.c:5631:23: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5631 |             *lnotab++ = 0;
      |                       ^
Python/compile.c:5668:19: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      |                   ^
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:0,
    inlined from ‘assemble’ at Python/compile.c:6053:0:
Python/compile.c:5630: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5630 |             *lnotab++ = 255;
      | 
Python/compile.c:5631: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5631 |             *lnotab++ = 0;
      | 
Python/compile.c:5668: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      | 
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:0,
    inlined from ‘assemble’ at Python/compile.c:6053:0:
Python/compile.c:5630: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5630 |             *lnotab++ = 255;
      | 
Python/compile.c:5631: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5631 |             *lnotab++ = 0;
      | 
Python/compile.c:5668: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      | 
At top level:
lto1: fatal error: error writing to /tmp/ccmbZPj3.s: No space left on device
compilation terminated.
lto-wrapper: fatal error: gcc returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make: *** [Makefile:737: Programs/_testembed] Error 1
make: *** Waiting for unfinished jobs....
At top level:
lto1: fatal error: error writing to /tmp/cc83hJY9.s: No space left on device
compilation terminated.
lto-wrapper: fatal error: gcc returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make: *** [Makefile:602: python] Error 1

find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make: [Makefile:1854: clean-retain-profile] Error 1 (ignored)

@bedevere-bot
Copy link

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

Hi! The buildbot s390x Fedora 3.9 has failed when building commit c16a2a1.

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/213/builds/7) and take a look at the build logs.
  4. Check if the failure is related to this commit (c16a2a1) 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/213/builds/7

Failed tests:

  • test_univnewlines
  • test_urllib2
  • test_socketserver
  • test_regrtest
  • test_tools
  • test_embed
  • test_marshal
  • test_sax
  • test_codecs
  • test_bufio
  • test_contextlib
  • test_binhex
  • test_argparse
  • test_pickle
  • test_exceptions
  • test_logging
  • test_plistlib
  • test_deque
  • test_posixpath
  • test_site
  • test_xml_etree
  • test_venv

Failed subtests:

  • test_readlines - test.test_univnewlines.CTestCRLFNewlines
  • test_realpath_resolve_before_normalizing - test.test_posixpath.PosixPathTest
  • test_readline - test.test_univnewlines.PyTestCRNewlines
  • test_read - test.test_univnewlines.CTestMixedNewlines
  • test_successes_one_group_sysargs - test.test_argparse.TestFileTypeW
  • test_realpath_resolve_parents - test.test_posixpath.PosixPathTest
  • testTuple - test.test_marshal.InstancingTestCase
  • test_module_autotest - test.test_regrtest.ProgramsTestCase
  • test_failures_many_groups_listargs - test.test_argparse.TestFileTypeR
  • test_failures_many_groups_sysargs - test.test_argparse.TestFileTypeRB
  • test_tell - test.test_univnewlines.PyTestCRLFNewlines
  • test_seek - test.test_univnewlines.PyTestLFNewlines
  • test_system_id - test.test_sax.PrepareInputSourceTest
  • test_sync_handled - test.test_socketserver.ErrorHandlerTest
  • test_successes_no_groups_listargs - test.test_argparse.TestFileTypeR
  • test_seek - test.test_univnewlines.CTestCRNewlines
  • test_msgid - test.test_tools.test_i18n.Test_pygettext
  • test_ThreadingUnixStreamServer - test.test_socketserver.SocketServerTest
  • test_read - test.test_univnewlines.PyTestCRNewlines
  • test_str_rep - test.test_logging.LogRecordTest
  • test_namer_rotator_inheritance - test.test_logging.RotatingFileHandlerTest
  • test_floats - test.test_marshal.FloatTestCase
  • test_path_basename - test.test_posixpath.PathLikeTests
  • test_rotator - test.test_logging.RotatingFileHandlerTest
  • test_failures_many_groups_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_tell - test.test_univnewlines.CTestCRLFNewlines
  • test_ignore - test.test_regrtest.ParseArgsTestCase
  • test_failures_one_group_listargs - test.test_argparse.TestFileTypeR
  • test_pathfix - test.test_tools.test_pathfix.TestPathfixFunctional
  • test_classdocstring_bytes - test.test_tools.test_i18n.Test_pygettext
  • test_failures_no_groups_sysargs - test.test_argparse.TestFileTypeW
  • test_output - test.test_logging.UnixDatagramHandlerTest
  • test_last_resort - test.test_logging.LastResortTest
  • test_readlines - test.test_univnewlines.PyTestMixedNewlines
  • test_failures_one_group_sysargs - test.test_argparse.TestFileTypeW
  • test_classdocstring_fstring - test.test_tools.test_i18n.Test_pygettext
  • test_realpath_relative - test.test_posixpath.PosixPathTest
  • test_failures_no_groups_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_primepat - test.test_bufio.CBufferSizeTest
  • test_list - test.test_marshal.ContainerTestCase
  • test_with_pip - test.test_venv.EnsurePipTest
  • test_UnixDatagramServer - test.test_socketserver.SocketServerTest
  • test_output - test.test_logging.HTTPHandlerTest
  • test_failures_no_groups_sysargs - test.test_argparse.TestFileTypeWB
  • test_failures_one_group_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_file_created - test.test_logging.RotatingFileHandlerTest
  • test_successes_many_groups_listargs - test.test_argparse.TestFileTypeRB
  • test_failures_one_group_listargs - test.test_argparse.TestFileTypeRB
  • test_delay - test.test_logging.FileHandlerTest
  • test_failures_one_group_sysargs - test.test_argparse.TestFileTypeWB
  • test_readlines - test.test_univnewlines.PyTestLFNewlines
  • test_successes_many_groups_sysargs - test.test_argparse.TestFileTypeR
  • test_readlines - test.test_univnewlines.CTestCRNewlines
  • test_abspath_issue3426 - test.test_posixpath.PosixCommonTest
  • test_readline - test.test_univnewlines.CTestCRLFNewlines
  • test_failures_no_groups_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_xmlgen_unencodable - test.test_sax.StreamReaderWriterXmlgenTest
  • test_sets - test.test_marshal.ContainerTestCase
  • test_read - test.test_univnewlines.CTestCRLFNewlines
  • test_path_normcase - test.test_posixpath.PathLikeTests
  • test_successes_one_group_listargs - test.test_argparse.TestFileTypeRB
  • test_successes_no_groups_sysargs - test.test_argparse.TestFileTypeRB
  • test_compute_rollover_weekly_attime - test.test_logging.TimedRotatingFileHandlerTest
  • test_write_to_binary_file - test.test_xml_etree.IOTest
  • test_addpackage_import_bad_syntax - test.test_site.HelperFunctionsTests
  • test_load_closed_file - test.test_pickle.PyPickleTests
  • test_output - test.test_logging.UnixSysLogHandlerTest
  • test_xmlgen_encoding_bytes - test.test_sax.StreamReaderWriterXmlgenTest
  • test_failures_many_groups_listargs - test.test_argparse.TestArgumentsFromFile
  • test_successes_many_groups_sysargs - test.test_argparse.TestFileTypeRB
  • test_xmlgen_ignorable_empty - test.test_sax.StreamReaderWriterXmlgenTest
  • test_successes_no_groups_listargs - test.test_argparse.TestArgumentsFromFile
  • test_character_stream - test.test_sax.PrepareInputSourceTest
  • test_failures_many_groups_listargs - test.test_argparse.TestFileTypeWB
  • test_seek - test.test_univnewlines.CTestLFNewlines
  • test_readline - test.test_univnewlines.PyTestMixedNewlines
  • test_failures_many_groups_sysargs - test.test_argparse.TestFileTypeR
  • test_bool - test.test_marshal.IntTestCase
  • test_successes_no_groups_listargs - test.test_argparse.TestFileTypeWB
  • test_msgid_fstring - test.test_tools.test_i18n.Test_pygettext
  • test_successes_many_groups_listargs - test.test_argparse.TestArgumentsFromFile
  • testStr - test.test_marshal.InstancingTestCase
  • test_failures_one_group_listargs - test.test_argparse.TestArgumentsFromFile
  • test_dump_text_file - test.test_pickle.PyPickleTests
  • test_successes_many_groups_listargs - test.test_argparse.TestFileTypeWB
  • test_failures_one_group_listargs - test.test_argparse.TestFileTypeWB
  • test_compute_rollover_W0 - test.test_logging.TimedRotatingFileHandlerTest
  • test_compute_rollover_D - test.test_logging.TimedRotatingFileHandlerTest
  • test_filetime - test.test_posixpath.PosixCommonTest
  • test_path_realpath - test.test_posixpath.PathLikeTests
  • test_iterparse - test.test_xml_etree.ElementTreeTest
  • test_sync_not_handled - test.test_socketserver.ErrorHandlerTest
  • test_byte_stream - test.test_sax.PrepareInputSourceTest
  • test_path_relpath - test.test_posixpath.PathLikeTests
  • test_realpath_deep_recursion - test.test_posixpath.PosixPathTest
  • test_seek0 - test.test_codecs.BomTest
  • test_readline - test.test_univnewlines.PyTestLFNewlines
  • test_script_regrtest - test.test_regrtest.ProgramsTestCase
  • test_successes_one_group_listargs - test.test_argparse.TestArgumentsFromFile
  • test_successes_one_group_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_binhex - test.test_binhex.BinHexTestCase
  • test_readline - test.test_univnewlines.CTestCRNewlines
  • test_realpath_resolve_first - test.test_posixpath.PosixPathTest
  • test_funcdocstring_bytes - test.test_tools.test_i18n.Test_pygettext
  • test_unpickle_module_race - test.test_pickle.CUnpicklerTests
  • test_successes_one_group_listargs - test.test_argparse.TestFileTypeWB
  • test_xmlgen_pi - test.test_sax.StreamReaderWriterXmlgenTest
  • test_path_islink - test.test_posixpath.PathLikeTests
  • test_read - test.test_univnewlines.PyTestLFNewlines
  • test_dump_closed_file - test.test_pickle.CPickleTests
  • test_write_to_filename - test.test_xml_etree.IOTest
  • test_alter_comments - test.test_tools.test_fixcid.Test
  • test_read - test.test_univnewlines.CTestCRNewlines
  • test_nullpat - test.test_bufio.PyBufferSizeTest
  • test_successes_many_groups_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_wait - test.test_regrtest.ArgsTestCase
  • test_successes_many_groups_listargs - test.test_argparse.TestFileTypeR
  • test_unpickle_module_race - test.test_pickle.PyUnpicklerTests
  • test_config15_ok - test.test_logging.ConfigDictTest
  • test_readlines - test.test_univnewlines.CTestLFNewlines
  • test_failures_no_groups_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_should_not_rollover - test.test_logging.RotatingFileHandlerTest
  • testWithOpen - test.test_contextlib.FileContextTestCase
  • test_maxlen - test.test_deque.TestBasic
  • test_multiprocessing - test.test_logging.LogRecordTest
  • test_failures_many_groups_listargs - test.test_argparse.TestFileTypeDefaults
  • test_successes_many_groups_sysargs - test.test_argparse.TestFileTypeWB
  • test_recursive - test.test_tools.test_pathfix.TestPathfixFunctional
  • test_compute_rollover_H - test.test_logging.TimedRotatingFileHandlerTest
  • test_primepat - test.test_bufio.PyBufferSizeTest
  • test_samestat_on_link - test.test_posixpath.PosixCommonTest
  • test_http_body_file - test.test_urllib2.HandlerTests
  • test_successes_no_groups_listargs - test.test_argparse.TestFileTypeDefaults
  • test_nullpat - test.test_bufio.CBufferSizeTest
  • test_output - test.test_logging.IPv6SysLogHandlerTest
  • testFloat - test.test_marshal.InstancingTestCase
  • test_output - test.test_logging.UnixSocketHandlerTest
  • test_compute_rollover_daily_attime - test.test_logging.TimedRotatingFileHandlerTest
  • test_init_pyvenv_cfg - test.test_embed.InitConfigTests
  • test_dump_text_file - test.test_pickle.CPickleTests
  • test_realpath_symlink_loops - test.test_posixpath.PosixPathTest
  • test_encoding_plain_file - test.test_logging.EncodingTest
  • test_xmlgen_fragment - test.test_sax.StreamReaderWriterXmlgenTest
  • test_successes_many_groups_listargs - test.test_argparse.TestFileTypeDefaults
  • test_should_rollover - test.test_logging.RotatingFileHandlerTest
  • test_open - test.test_codecs.CodecsModuleTest
  • test_failures_one_group_listargs - test.test_argparse.TestFileTypeDefaults
  • test_successes_one_group_listargs - test.test_argparse.TestFileTypeR
  • test_successes_no_groups_sysargs - test.test_argparse.TestFileTypeR
  • test_compute_rollover_S - test.test_logging.TimedRotatingFileHandlerTest
  • test_path_abspath - test.test_posixpath.PathLikeTests
  • test_getsize - test.test_posixpath.PosixCommonTest
  • test_failures_no_groups_listargs - test.test_argparse.TestFileTypeRB
  • test_addpackage_import_bad_exec - test.test_site.HelperFunctionsTests
  • test_file - test.test_urllib2.HandlerTests
  • test_path_objects - test.test_sax.PrepareInputSourceTest
  • test_tools_script_run_tests - test.test_regrtest.ProgramsTestCase
  • test_compute_rollover_MIDNIGHT - test.test_logging.TimedRotatingFileHandlerTest
  • test_path_split - test.test_posixpath.PathLikeTests
  • test_pathfix_adding_errors - test.test_tools.test_pathfix.TestPathfixFunctional
  • test_failures_many_groups_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_path_splitdrive - test.test_posixpath.PathLikeTests
  • test_calls_task_done_after_stop - test.test_logging.QueueListenerTest
  • test_string - test.test_sax.PrepareInputSourceTest
  • test_successes_one_group_listargs - test.test_argparse.TestFileTypeDefaults
  • test_successes_no_groups_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_failures_many_groups_sysargs - test.test_argparse.TestFileTypeWB
  • test_handle_called_with_mp_queue - test.test_logging.QueueListenerTest
  • test_pathfix_adding_flag - test.test_tools.test_pathfix.TestPathfixFunctional
  • test_io - test.test_plistlib.TestPlistlib
  • test_match - test.test_regrtest.ParseArgsTestCase
  • test_failures_many_groups_listargs - test.test_argparse.TestFileTypeW
  • test_addpackage_import_bad_pth_file - test.test_site.HelperFunctionsTests
  • test_threading_not_handled - test.test_socketserver.ErrorHandlerTest
  • test_successes_no_groups_listargs - test.test_argparse.TestFileTypeW
  • test_seek - test.test_univnewlines.PyTestCRLFNewlines
  • test_successes_many_groups_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_path_dirname - test.test_posixpath.PathLikeTests
  • test_deactivate_with_strict_bash_opts - test.test_venv.BasicTest
  • test_filemode - test.test_logging.BasicConfigTest
  • test_addsitedir - test.test_site.HelperFunctionsTests
  • test_successes_one_group_sysargs - test.test_argparse.TestFileTypeR
  • test_path_ismount - test.test_posixpath.PathLikeTests
  • test_tuple - test.test_marshal.ContainerTestCase
  • test_compute_rollover_M - test.test_logging.TimedRotatingFileHandlerTest
  • test_path_expanduser - test.test_posixpath.PathLikeTests
  • test_msgid_bytes - test.test_tools.test_i18n.Test_pygettext
  • test_parse_InputSource - test.test_sax.ParseTest
  • test_successes_many_groups_listargs - test.test_argparse.TestFileTypeW
  • test_readline - test.test_univnewlines.CTestLFNewlines
  • test_failures_one_group_listargs - test.test_argparse.TestFileTypeW
  • test_write_to_text_file - test.test_xml_etree.IOTest
  • testInt - test.test_marshal.InstancingTestCase
  • test_output - test.test_logging.SysLogHandlerTest
  • test_ismount_non_existent - test.test_posixpath.PosixPathTest
  • test_read - test.test_univnewlines.CTestLFNewlines
  • test_nonascii_abspath - test.test_posixpath.PosixCommonTest
  • test_funcdocstring_fstring - test.test_tools.test_i18n.Test_pygettext
  • test_no_pip_by_default - test.test_venv.EnsurePipTest
  • test_successes_one_group_listargs - test.test_argparse.TestFileTypeW
  • test_successes_no_groups_sysargs - test.test_argparse.TestFileTypeW
  • test_text_file - test.test_sax.PrepareInputSourceTest
  • test_encoding_errors_default - test.test_logging.BasicConfigTest
  • testRaising - test.test_exceptions.ExceptionTests
  • test_successes_one_group_sysargs - test.test_argparse.TestFileTypeRB
  • test_path_lexists - test.test_posixpath.PathLikeTests
  • test_module_from_test_autotest - test.test_regrtest.ProgramsTestCase
  • test_script_autotest - test.test_regrtest.ProgramsTestCase
  • test_handle_called_with_queue_queue - test.test_logging.QueueListenerTest
  • test_failures_many_groups_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_encoding_errors_none - test.test_logging.BasicConfigTest
  • testDict - test.test_marshal.InstancingTestCase
  • test_prompt - test.test_venv.BasicTest
  • test_print - test.test_deque.TestBasic
  • test_successes_no_groups_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_binary_file - test.test_sax.PrepareInputSourceTest
  • test_successes_many_groups_sysargs - test.test_argparse.TestFileTypeW
  • test_ForkingUnixDatagramServer - test.test_socketserver.SocketServerTest
  • test_isdir - test.test_posixpath.PosixCommonTest
  • test_readlines - test.test_univnewlines.PyTestCRLFNewlines
  • test_selftest - test.test_tools.test_pindent.PindentTests
  • setUpModule - test.test_largefile
  • test_successes_no_groups_sysargs - test.test_argparse.TestFileTypeWB
  • test_encoding_errors - test.test_logging.BasicConfigTest
  • test_failures_no_groups_sysargs - test.test_argparse.TestFileTypeRB
  • test_addpackage - test.test_site.HelperFunctionsTests
  • test_sameopenfile - test.test_posixpath.PosixCommonTest
  • test_unpickle_module_race - test.test_pickle.InMemoryPickleTests
  • test_classdocstring - test.test_tools.test_i18n.Test_pygettext
  • test_load_closed_file - test.test_pickle.CPickleTests
  • test_dict_arg - test.test_logging.LogRecordTest
  • test_POT_Creation_Date - test.test_tools.test_i18n.Test_pygettext
  • test_xmlgen_ns - test.test_sax.StreamReaderWriterXmlgenTest
  • test_forking_handled - test.test_socketserver.ErrorHandlerTest
  • test_formatting - test.test_logging.ExceptionTest
  • test_failures_no_groups_listargs - test.test_argparse.TestFileTypeR
  • test_seek - test.test_univnewlines.CTestMixedNewlines
  • test_samefile - test.test_posixpath.PosixCommonTest
  • test_parse_strings - test.test_tools.test_fixcid.Test
  • test_failures_one_group_sysargs - test.test_argparse.TestFileTypeRB
  • test_path_expandvars - test.test_posixpath.PathLikeTests
  • test_isolation - test.test_venv.BasicTest
  • test_realpath_repeated_indirect_symlinks - test.test_posixpath.PosixPathTest
  • test_write_to_binary_file_with_bom - test.test_xml_etree.IOTest
  • test_seek - test.test_univnewlines.PyTestCRNewlines
  • test_path_join - test.test_posixpath.PathLikeTests
  • test_failures_one_group_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_finds_expected_number_of_tests - test.test_regrtest.CheckActualTests
  • test_failures_no_groups_listargs - test.test_argparse.TestFileTypeDefaults
  • test_successes_one_group_sysargs - test.test_argparse.TestArgumentsFromFile
  • test_UnixStreamServer - test.test_socketserver.SocketServerTest
  • test_invalid - test.test_logging.TimedRotatingFileHandlerTest
  • test_init_pybuilddir - test.test_embed.InitConfigTests
  • test_failures_many_groups_sysargs - test.test_argparse.TestFileTypeW
  • test_successes_one_group_sysargs - test.test_argparse.TestFileTypeWB
  • test_samestat - test.test_posixpath.PosixCommonTest
  • test_optional - test.test_logging.LogRecordTest
  • test_explicit_no_pip - test.test_venv.EnsurePipTest
  • test_funcdocstring - test.test_tools.test_i18n.Test_pygettext
  • test_path_commonpath - test.test_posixpath.PathLikeTests
  • test_threading_handled - test.test_socketserver.ErrorHandlerTest
  • testFrozenSet - test.test_marshal.InstancingTestCase
  • test_path_splitext - test.test_posixpath.PathLikeTests
  • test_encoding - test.test_logging.BasicConfigTest
  • test_directory - test.test_tools.test_fixcid.Test
  • test_failures_many_groups_listargs - test.test_argparse.TestFileTypeRB
  • test_successes_no_groups_listargs - test.test_argparse.TestFileTypeRB
  • test_exists - test.test_posixpath.PosixCommonTest
  • testList - test.test_marshal.InstancingTestCase
  • test_readlines - test.test_univnewlines.CTestMixedNewlines
  • test_readline - test.test_univnewlines.PyTestCRLFNewlines
  • test_failures_many_groups_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • testBytes - test.test_marshal.InstancingTestCase
  • test_gprof - test.test_tools.test_gprof2html.Gprof2htmlTests
  • test_forking_not_handled - test.test_socketserver.ErrorHandlerTest
  • test_module_test - test.test_regrtest.ProgramsTestCase
  • test_successes_no_groups_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_filename - test.test_logging.BasicConfigTest
  • test_readlines - test.test_univnewlines.PyTestCRNewlines
  • test_read - test.test_univnewlines.PyTestCRLFNewlines
  • test_realpath_basic - test.test_posixpath.PosixPathTest
  • test_ForkingUnixStreamServer - test.test_socketserver.SocketServerTest
  • test_successes_many_groups_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_failures_no_groups_listargs - test.test_argparse.TestFileTypeW
  • test_failures_one_group_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_rollover_filenames - test.test_logging.RotatingFileHandlerTest
  • test_seek - test.test_univnewlines.CTestCRLFNewlines
  • test_islink - test.test_posixpath.PosixPathTest
  • test_ints - test.test_marshal.IntTestCase
  • testSet - test.test_marshal.InstancingTestCase
  • test_pathfix_keeping_flags - test.test_tools.test_pathfix.TestPathfixFunctional
  • test_path_isabs - test.test_posixpath.PathLikeTests
  • test_noserver - test.test_logging.UnixSocketHandlerTest
  • test_dump_closed_file - test.test_pickle.PyPickleTests
  • test_successes_one_group_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_failures_no_groups_sysargs - test.test_argparse.TestFileTypeR
  • test_failures_no_groups_listargs - test.test_argparse.TestArgumentsFromFile
  • test_isfile - test.test_posixpath.PosixCommonTest
  • test_module_regrtest - test.test_regrtest.ProgramsTestCase
  • test_rollover - test.test_logging.TimedRotatingFileHandlerTest
  • test_successes_one_group_listargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_successes_no_groups_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_failures_no_groups_listargs - test.test_argparse.TestFileTypeWB
  • test_failures_one_group_sysargs - test.test_argparse.TestFileTypeR
  • test_xmlgen_ns_empty - test.test_sax.StreamReaderWriterXmlgenTest
  • test_ThreadingUnixDatagramServer - test.test_socketserver.SocketServerTest
  • test_failures_no_groups_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_seek - test.test_univnewlines.PyTestMixedNewlines
  • test_successes_many_groups_sysargs - test.test_argparse.TestArgumentsFromFileConverter
  • test_read - test.test_univnewlines.PyTestMixedNewlines
  • test_xmlgen_ignorable - test.test_sax.StreamReaderWriterXmlgenTest
  • test_samefile_on_link - test.test_posixpath.PosixCommonTest
  • test_unraisable_exc - test.test_regrtest.ArgsTestCase
  • test_dict - test.test_marshal.ContainerTestCase
  • test_failures_one_group_sysargs - test.test_argparse.TestFileTypeDefaults
  • test_process_errors - test.test_tools.test_pdeps.PdepsTests
  • test_bug691291 - test.test_codecs.UTF16Test
  • test_path_normpath - test.test_posixpath.PathLikeTests
  • test_readline - test.test_univnewlines.CTestMixedNewlines

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

==

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 227, in test_overwrite_existing
    venv.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmprsk8yhw6/bin/python' -> '/tmp/tmprsk8yhw6/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpli7a2bwi'


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


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 633, in setUp
    with open(self.file_name, 'xb', 0) as file:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pindent.py", line 37, in test_selftest
    with support.temp_dir() as directory:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp2jefervs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4593, in test_encoding_errors_default
    logging.basicConfig(filename='test.log', encoding=encoding,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4453, in test_filemode
    logging.basicConfig(filename='test.log', filemode='wb')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4574, in test_encoding_errors
    logging.basicConfig(filename='test.log', encoding=encoding,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 416, in testInt
    self.helper(intobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1620, in setUp
    super(TestFileTypeRB, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_binhex.py", line 29, in test_binhex
    with open(self.fname1, 'wb') as f:
OSError: [Errno 28] No space left on device: '@test_2322696_tmp1'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 348, in test_realpath_basic
    os.symlink(ABSTFN+"1", ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ1' -> '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 177, in test_isdir
    create_file(filename)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 318, in test_executable
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpoij_fl91/bin/python' -> '/tmp/tmpoij_fl91/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/pickletester.py", line 3123, in test_load_closed_file
    f = open(TESTFN, "wb")
OSError: [Errno 28] No space left on device: '@test_2322865_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 136, in test_exists
    create_file(filename)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 62, in test_bool
    self.helper(b)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/threading.py", line 950, in _bootstrap_inner
    self.run()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/threading.py", line 888, in run
    self._target(*self._args, **self._kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 652, in process_request_thread
    self.handle_error(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 349, in handle_error
    with open(test.support.TESTFN, 'a') as log:
OSError: [Errno 28] No space left on device: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_codecs.py", line 1703, in test_open
    codecs.open(support.TESTFN, mode, 'ascii') as file:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
FileNotFoundError: [Errno 2] No such file or directory: '@test_2323320_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 461, in testDict
    self.helper(dictobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 2096, in test_encoding_plain_file
    fd, fn = tempfile.mkstemp(".log", "test_logging-1-")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging-1-whdeyydw.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 123, in test_pathfix_adding_errors
    self.pathfix(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 30, in pathfix
    with open(filename, 'w', encoding='utf8') as f:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 314, in test_threading_handled
    self.check_result(handled=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 331, in check_result
    with open(test.support.TESTFN) as log:
FileNotFoundError: [Errno 2] No such file or directory: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_xml_etree.py", line 3646, in test_write_to_filename
    tree.write(TESTFN)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/xml/etree/ElementTree.py", line 732, in write
    with _get_writer(file_or_filename, enc_lower) as write:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/xml/etree/ElementTree.py", line 768, in _get_writer
    file = open(file_or_filename, "w", encoding=encoding,
OSError: [Errno 28] No space left on device: '@test_2322735_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_gprof2html.py", line 26, in test_gprof
    tempfile.TemporaryDirectory() as tmpdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 779, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 316, in _handle_request_noblock
    self.process_request(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 347, in process_request
    self.finish_request(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 360, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 720, in __init__
    self.handle()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 358, in handle
    with open(test.support.TESTFN, 'a') as log:
OSError: [Errno 28] No space left on device: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 304, in test_sync_handled
    BaseErrorTestServer(ValueError)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 343, in __init__
    self.handle_request()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 296, in handle_request
    return self._handle_request_noblock()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 318, in _handle_request_noblock
    self.handle_error(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 349, in handle_error
    with open(test.support.TESTFN, 'a') as log:
OSError: [Errno 28] No space left on device: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 613, in test_xmlgen_ns_empty
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 295, in test_symlinking
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpzjbu3xiq/bin/python' -> '/tmp/tmpzjbu3xiq/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 71, in test_floats
    self.helper(float(expected))
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp4c81_42z'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 189, in test_funcdocstring_defvalue_args
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 318, in test_threading_not_handled
    self.check_result(handled=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 331, in check_result
    with open(test.support.TESTFN) as log:
FileNotFoundError: [Errno 2] No such file or directory: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 309, in test_sync_not_handled
    BaseErrorTestServer(SystemExit)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 343, in __init__
    self.handle_request()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 296, in handle_request
    return self._handle_request_noblock()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 318, in _handle_request_noblock
    self.handle_error(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 349, in handle_error
    with open(test.support.TESTFN, 'a') as log:
OSError: [Errno 28] No space left on device: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 62, in test_nullpat
    self.drive_one(b'\0' * 1000)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 52, in drive_one
    self.try_one(teststring)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 24, in try_one
    f = self.open(support.TESTFN, "wb")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 212, in open
    raw = FileIO(file,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 1561, in __init__
    fd = os.open(file, flags, 0o666)
OSError: [Errno 28] No space left on device: '@test_2316657_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 61, in test_recursive
    os.mkdir(tmpdir)
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ.d'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_deque.py", line 561, in test_print
    fo.close()
UnboundLocalError: local variable 'fo' referenced before assignment


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_xml_etree.py", line 3672, in test_write_to_binary_file_with_bom
    with open(TESTFN, 'wb') as f:
OSError: [Errno 28] No space left on device: '@test_2322735_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4564, in test_encoding
    handler.close()
UnboundLocalError: local variable 'handler' referenced before assignment


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 426, in testStr
    self.helper(strobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1580, in setUp
    super(TestFileTypeR, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 323, in test_forking_handled
    self.check_result(handled=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 331, in check_result
    with open(test.support.TESTFN) as log:
FileNotFoundError: [Errno 2] No such file or directory: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4636, in test_encoding_errors_none
    handler.close()
UnboundLocalError: local variable 'handler' referenced before assignment


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1661, in setUp
    super(TestFileTypeW, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_xml_etree.py", line 3653, in test_write_to_text_file
    with open(TESTFN, 'w', encoding='utf-8') as f:
OSError: [Errno 28] No space left on device: '@test_2322735_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp3tmo8fy7'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 159, in test_msgid
    msgids = self.extract_docstrings_from_str(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_plistlib.py", line 151, in test_io
    with open(support.TESTFN, 'wb') as fp:
OSError: [Errno 28] No space left on device: '@test_2322917_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_exceptions.py", line 53, in testRaising
    fp = open(TESTFN, 'w')
OSError: [Errno 28] No space left on device: '@test_2323602_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 230, in test_files_list
    with temp_cwd(None), temp_dir(None) as sdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 284, in test_isolation
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpqsriuqjj/bin/python' -> '/tmp/tmpqsriuqjj/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 145, in test_classdocstring_bytes
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 34, in test_ints
    self.helper(expected)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_xml_etree.py", line 3662, in test_write_to_binary_file
    with open(TESTFN, 'wb') as f:
OSError: [Errno 28] No space left on device: '@test_2322735_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1495, in setUp
    super(TestArgumentsFromFileConverter, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 168, in test_msgid_fstring
    msgids = self.extract_docstrings_from_str('_(f"""doc""")')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp3663gmxk'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 5013, in setUp
    fd, self.fn = tempfile.mkstemp(".log", "test_logging-2-")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging-2-z2_t58sk.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1461, in setUp
    super(TestArgumentsFromFile, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_deque.py", line 555, in test_print
    fo = open(support.TESTFN, "w")
OSError: [Errno 28] No space left on device: '@test_2323016_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 114, in test_filetime
    create_file(filename, b'foo')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 199, in test_funcdocstring_multiple_funcs
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 183, in test_ismount_non_existent
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 770, in test_xmlgen_fragment
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 217, in test_classdocstring_early_colon
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/pickletester.py", line 1391, in test_unpickle_module_race
    os.mkdir(TESTFN)
OSError: [Errno 28] No space left on device: '@test_2322865_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 449, in testSet
    self.helper(setobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 477, in test_xmlgen_pi
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 62, in test_nullpat
    self.drive_one(b'\0' * 1000)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 52, in drive_one
    self.try_one(teststring)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 24, in try_one
    f = self.open(support.TESTFN, "wb")
OSError: [Errno 28] No space left on device: '@test_2316657_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 411, in test_realpath_repeated_indirect_symlinks
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 367, in test_multiprocessing
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpn0ryxnqq/bin/python' -> '/tmp/tmpn0ryxnqq/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 328, in test_forking_not_handled
    self.check_result(handled=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 331, in check_result
    with open(test.support.TESTFN) as log:
FileNotFoundError: [Errno 2] No such file or directory: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_fixcid.py", line 32, in test_alter_comments
    output = self.run_script(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_fixcid.py", line 78, in run_script
    with open(substfilename, "w") as file:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ.subst'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 352, in setUp
    with open(self.file, "w") as tmp:
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1939, in setUp
    self.address = _get_temp_domain_socket()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1757, in _get_temp_domain_socket
    fd, fn = tempfile.mkstemp(prefix='test_logging_', suffix='.sock')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging_pmrgmqrj.sock'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 553, in test_xmlgen_ignorable
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 113, in setUp
    raise AssertionError('Unexpected handlers: %s' % hlist)
AssertionError: Unexpected handlers: [<StreamHandler (NOTSET)>]


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 537, in test_with_pip
    self.do_test_with_pip(False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 477, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpy53dgdsf/bin/python' -> '/tmp/tmpy53dgdsf/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 472, in test_abspath_issue3426
    with support.temp_cwd(unicwd):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 895, in temp_dir
    os.mkdir(path)
OSError: [Errno 28] No space left on device: 'çwð'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 650, in process_request_thread
    self.finish_request(request, client_address)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 360, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/socketserver.py", line 720, in __init__
    self.handle()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 358, in handle
    with open(test.support.TESTFN, 'a') as log:
OSError: [Errno 28] No space left on device: '@test_2322610_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 115, in test_funcdocstring
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 248, in test_ForkingUnixDatagramServer
    self.run_server(ForkingUnixDatagramServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 472, in test_realpath_resolve_before_normalizing
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4603, in test_encoding_errors_default
    handler.close()
UnboundLocalError: local variable 'handler' referenced before assignment


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 384, in test_deactivate_with_strict_bash_opts
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmps_zo_e7h/bin/python' -> '/tmp/tmps_zo_e7h/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 1602, in setUp
    super(TestFileTypeDefaults, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_argparse.py", line 34, in setUp
    self.temp_dir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2322573æ']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_univnewlines.py", line 49, in setUp
    with self.open(support.TESTFN, self.WRITEMODE) as fp:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 212, in open
    raw = FileIO(file,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 1561, in __init__
    fd = os.open(file, flags, 0o666)
OSError: [Errno 28] No space left on device: '@test_2322814_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 198, in test_UnixStreamServer
    self.run_server(socketserver.UnixStreamServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 358, in test_realpath_relative
    os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN)
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ1' -> '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 137, in test_addpackage_import_bad_syntax
    pth_dir, pth_fn = self.make_pth("import bad-syntax\n")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 130, in make_pth
    with open(pth_fn, 'w', encoding='utf-8') as pth_file:
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322838_tmpæ.pth'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 192, in test_parse_InputSource
    make_xml_file(self.data, 'iso-8859-1', None)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 115, in make_xml_file
    with open(TESTFN, 'w', encoding=encoding, errors='xmlcharrefreplace') as f:
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4584, in test_encoding_errors
    handler.close()
UnboundLocalError: local variable 'handler' referenced before assignment


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 212, in test_ForkingUnixStreamServer
    self.run_server(ForkingUnixStreamServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pdeps.py", line 20, in test_process_errors
    with tempfile.TemporaryDirectory() as tmpdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 779, in __init__
    self.name = mkdtemp(suffix, prefix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 128, in test_prompt
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpjsfogun8/bin/python' -> '/tmp/tmpjsfogun8/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_codecs.py", line 713, in test_bug691291
    with open(support.TESTFN, 'wb') as fp:
OSError: [Errno 28] No space left on device: '@test_2323320_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 370, in test_realpath_symlink_loops
    os.symlink(ABSTFN, ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ' -> '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1774, in setUp
    self.address = _get_temp_domain_socket()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1757, in _get_temp_domain_socket
    fd, fn = tempfile.mkstemp(prefix='test_logging_', suffix='.sock')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging__pu1fopb.sock'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 421, in testFloat
    self.helper(floatobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1969, in setUp
    BaseTest.setUp(self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 113, in setUp
    raise AssertionError('Unexpected handlers: %s' % hlist)
AssertionError: Unexpected handlers: [<StreamHandler (NOTSET)>]


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 122, in test_funcdocstring_bytes
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/libregrtest/runtest_mp.py", line 284, in run
Warning --     mp_result = self._runtest(test_name)
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/libregrtest/runtest_mp.py", line 249, in _runtest
Warning --     retcode, stdout, stderr = self._run_process(test_name)
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/libregrtest/runtest_mp.py", line 211, in _run_process
Warning --     stdout, stderr = popen.communicate(timeout=self.timeout)
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/subprocess.py", line 1130, in communicate
Warning --     stdout, stderr = self._communicate(input, endtime, timeout)
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/subprocess.py", line 2019, in _communicate
Warning --     stderr = self._translate_newlines(stderr,
Warning --   File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/subprocess.py", line 1007, in _translate_newlines
Warning --     data = data.decode(encoding, errors)
Warning -- UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa4 in position 2589: invalid start byte
Kill <TestWorkerProcess #1 running test=test_tokenize pid=2322770 time=38.0 sec> process group
Kill <TestWorkerProcess #3 running test=test_asyncio pid=2322278 time=46.2 sec> process group
Kill <TestWorkerProcess #4 running test=test_io pid=2323394 time=17.6 sec> process group
Kill <TestWorkerProcess #5 running test=test_concurrent_futures pid=2318952 time=1 min 34 sec> process group
Kill <TestWorkerProcess #6 running test=test_pydoc pid=2323065 time=27.1 sec> process group


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4435, in test_filename
    logging.basicConfig(filename='test.log')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_univnewlines.py", line 49, in setUp
    with self.open(support.TESTFN, self.WRITEMODE) as fp:
OSError: [Errno 28] No space left on device: '@test_2322814_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_largefile.py", line 260, in setUpModule
    f = open(TESTFN, 'wb', buffering=0)
OSError: [Errno 28] No space left on device: '@test_2323703_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 159, in test_sets
    self.helper(constructor(self.d.keys()))
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_xml_etree.py", line 631, in test_iterparse
    with open(TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2322735_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 221, in test_samefile
    create_file(file1)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 595, in test_xmlgen_ns
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 179, in test_addsitedir
    pth_file.create()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 350, in create
    FILE = open(self.file_path, 'w')
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322838_tmpæ.pth'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 155, in test_tuple
    self.helper(tuple(self.d.keys()))
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_embed.py", line 1224, in test_init_pyvenv_cfg
    with self.tmpdir_with_python() as tmpdir, \
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Programs/_testembed' -> '/tmp/tmpr51rh9z7/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_urllib2.py", line 784, in test_file
    f = open(TESTFN, "wb")
OSError: [Errno 28] No space left on device: '@test_2322708_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 59, in test_primepat
    self.drive_one(b"1234567890\00\01\02\03\04\05\06")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 52, in drive_one
    self.try_one(teststring)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 24, in try_one
    f = self.open(support.TESTFN, "wb")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 212, in open
    raw = FileIO(file,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/_pyio.py", line 1561, in __init__
    fd = os.open(file, flags, 0o666)
OSError: [Errno 28] No space left on device: '@test_2316657_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpfdpglywu'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 165, in test_ignore
    with open(support.TESTFN, "w") as fp:
OSError: [Errno 28] No space left on device: '@test_2321572_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 152, in test_list
    self.helper(list(self.d.items()))
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1872, in setUp
    BaseTest.setUp(self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 113, in setUp
    raise AssertionError('Unexpected handlers: %s' % hlist)
AssertionError: Unexpected handlers: [<StreamHandler (NOTSET)>]


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 299, in test_sameopenfile
    create_file(filename)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 540, in test_xmlgen_unencodable
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 181, in test_funcdocstring_annotated_return
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_codecs.py", line 1703, in test_open
    codecs.open(support.TESTFN, mode, 'ascii') as file:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2323320_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_urllib2.py", line 928, in test_http_body_file
    file_obj = tempfile.NamedTemporaryFile(mode='w+b', delete=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 532, in NamedTemporaryFile
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1957, in setUp
    super(IPv6SysLogHandlerTest, self).setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1872, in setUp
    BaseTest.setUp(self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 113, in setUp
    raise AssertionError('Unexpected handlers: %s' % hlist)
AssertionError: Unexpected handlers: [<StreamHandler (NOTSET)>]


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 164, in test_addpackage_import_bad_pth_file
    pth_dir, pth_fn = self.make_pth("abc\x00def\n")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 130, in make_pth
    with open(pth_fn, 'w', encoding='utf-8') as pth_file:
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322838_tmpæ.pth'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1774, in setUp
    self.address = _get_temp_domain_socket()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1757, in _get_temp_domain_socket
    fd, fn = tempfile.mkstemp(prefix='test_logging_', suffix='.sock')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging_bmt3y79w.sock'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 437, in testList
    self.helper(listobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp5a0c00wn'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_fixcid.py", line 17, in test_parse_strings
    output = self.run_script(old1 + old2)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_fixcid.py", line 78, in run_script
    with open(substfilename, "w") as file:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ.subst'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 491, in test_nonascii_abspath
    with support.temp_cwd(name):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 895, in temp_dir
    os.mkdir(path)
OSError: [Errno 28] No space left on device: b'@test_2322870_tmp\xe7w\xf0'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 59, in test_primepat
    self.drive_one(b"1234567890\00\01\02\03\04\05\06")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 52, in drive_one
    self.try_one(teststring)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_bufio.py", line 24, in try_one
    f = self.open(support.TESTFN, "wb")
OSError: [Errno 28] No space left on device: '@test_2316657_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4614, in test_encoding_errors_none
    logging.basicConfig(filename='test.log', encoding=encoding,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpgo9p1zfh'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 250, in test_samefile_on_link
    self._test_samefile_on_link_func(os.link)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 235, in _test_samefile_on_link_func
    create_file(test_fn1)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 431, in testBytes
    self.helper(bytesobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/pickletester.py", line 3153, in test_dump_text_file
    f = open(TESTFN, "w")
OSError: [Errno 28] No space left on device: '@test_2322865_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 565, in test_xmlgen_ignorable_empty
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 149, in test_dict
    self.helper(self.d)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 3188, in test_config15_ok
    fd, fn = tempfile.mkstemp(".log", "test_logging-X-")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging-X-za01fhik.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/xml/etree/ElementTree.py", line 762, in _get_writer
    write = file_or_filename.write
AttributeError: 'str' object has no attribute 'write'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 202, in test_isfile
    create_file(filename)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 173, in test_funcdocstring_annotated_args
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 292, in test_samestat_on_link
    self._test_samestat_on_link_func(os.link)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 276, in _test_samestat_on_link_func
    create_file(test_fn1)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ1'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 129, in test_funcdocstring_fstring
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 97, in test_pathfix_adding_flag
    self.pathfix(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 30, in pathfix
    with open(filename, 'w', encoding='utf8') as f:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 497, in test_realpath_resolve_first
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 426, in test_no_pip_by_default
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpdx_2sct3/bin/python' -> '/tmp/tmpdx_2sct3/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 260, in test_samestat
    create_file(test_fn1)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_embed.py", line 1196, in test_init_pybuilddir
    with self.tmpdir_with_python() as tmpdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Programs/_testembed' -> '/tmp/tmpb5kak1vt/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 158, in test_islink
    with open(support.TESTFN + "1", "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ1'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 5012, in setUp
    BaseTest.setUp(self)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 113, in setUp
    raise AssertionError('Unexpected handlers: %s' % hlist)
AssertionError: Unexpected handlers: [<StreamHandler (NOTSET)>]


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 204, in test_ThreadingUnixStreamServer
    self.run_server(socketserver.ThreadingUnixStreamServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_deque.py", line 70, in test_maxlen
    fo = open(support.TESTFN, "w")
OSError: [Errno 28] No space left on device: '@test_2323016_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 449, in test_realpath_resolve_parents
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 235, in test_UnixDatagramServer
    self.run_server(socketserver.UnixDatagramServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 164, in test_msgid_bytes
    msgids = self.extract_docstrings_from_str('_(b"""doc""")')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


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


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_fixcid.py", line 60, in test_directory
    os.mkdir(support.TESTFN)
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 431, in test_explicit_no_pip
    self.run_with_capture(venv.create, self.env_dir, with_pip=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpxpjf5ny0/bin/python' -> '/tmp/tmpxpjf5ny0/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 241, in test_ThreadingUnixDatagramServer
    self.run_server(socketserver.ThreadingUnixDatagramServer,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 2054, in decorator
    return func(*args)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 125, in run_server
    server = self.make_server(self.pickaddr(svrcls.address_family),
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_socketserver.py", line 98, in pickaddr
    fn = tempfile.mktemp(prefix='unix_socket.', dir=dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 182, in test_prefixes
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpiqpz7stn/bin/python' -> '/tmp/tmpiqpz7stn/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 103, in test_getsize
    create_file(filename, b'Hello')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_genericpath.py", line 16, in create_file
    with open(filename, 'xb', 0) as fp:
OSError: [Errno 28] No space left on device: '@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 443, in testTuple
    self.helper(tupleobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 152, in test_classdocstring_fstring
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1855, in setUp
    self.address = _get_temp_domain_socket()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 1757, in _get_temp_domain_socket
    fd, fn = tempfile.mkstemp(prefix='test_logging_', suffix='.sock')
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 332, in mkstemp
    return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 251, in _mkstemp_inner
    fd = _os.open(file, flags, 0o600)
OSError: [Errno 28] No space left on device: '/tmp/test_logging_7nz9jqkk.sock'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/pickletester.py", line 3115, in test_dump_closed_file
    f = open(TESTFN, "wb")
OSError: [Errno 28] No space left on device: '@test_2322865_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 85, in test_pathfix_keeping_flags
    self.pathfix(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 30, in pathfix
    with open(filename, 'w', encoding='utf8') as f:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_binhex.py", line 46, in test_binhex_error_on_long_filename
    f3 = open(self.fname3, 'wb')
OSError: [Errno 28] No space left on device: '@test_2322696_tmpvery_long_filename__very_long_filename__very_long_filename__very_long_filename__'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 98, in test_POT_Creation_Date
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 266, in test_upgrade
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp03h8flpv/bin/python' -> '/tmp/tmp03h8flpv/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 73, in test_pathfix
    self.pathfix(
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_pathfix.py", line 30, in pathfix
    with open(filename, 'w', encoding='utf8') as f:
OSError: [Errno 28] No space left on device: '@test_2322922_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 455, in testFrozenSet
    self.helper(frozensetobj)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_marshal.py", line 20, in helper
    with open(support.TESTFN, "wb") as f:
OSError: [Errno 28] No space left on device: '@test_2316624_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_contextlib.py", line 315, in testWithOpen
    tfn = tempfile.mktemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 394, in mktemp
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 152, in test_addpackage_import_bad_exec
    pth_dir, pth_fn = self.make_pth("randompath\nimport nosuchmodule\n")
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 130, in make_pth
    with open(pth_fn, 'w', encoding='utf-8') as pth_file:
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322838_tmpæ.pth'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_posixpath.py", line 426, in test_realpath_deep_recursion
    os.mkdir(ABSTFN)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322870_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 71, in test_header
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 187, in test_match
    with open(support.TESTFN, "w") as fp:
OSError: [Errno 28] No space left on device: '@test_2321572_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_codecs.py", line 2522, in test_seek0
    with codecs.open(support.TESTFN, 'w+', encoding=encoding) as f:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2323320_tmpæ'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmpoj_gzkcs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 581, in test_xmlgen_encoding_bytes
    result = self.ioclass()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_sax.py", line 829, in ioclass
    writer = codecs.open(self.fname, 'w', encoding='ascii',
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/codecs.py", line 905, in open
    file = builtins.open(filename, mode, buffering)
OSError: [Errno 28] No space left on device: '@test_2316651_tmpæ-codecs'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_logging.py", line 4554, in test_encoding
    logging.basicConfig(filename='test.log', encoding=encoding,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1991, in basicConfig
    h = FileHandler(filename, mode,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1142, in __init__
    StreamHandler.__init__(self, self._open())
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/logging/__init__.py", line 1171, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding,
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/build/test_python_2315605æ/test_python_worker_2321624æ/test.log'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 138, in test_classdocstring
    msgids = self.extract_docstrings_from_str(dedent('''\
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_tools/test_i18n.py", line 59, in extract_docstrings_from_str
    with temp_cwd(None) as cwd:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 956, in temp_cwd
    with temp_dir(path=name, quiet=quiet) as temp_path:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/support/__init__.py", line 890, in temp_dir
    path = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 348, in mkdtemp
    prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 118, in _sanitize_params
    dir = gettempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 287, in gettempdir
    tempdir = _get_default_tempdir()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 219, in _get_default_tempdir
    raise FileNotFoundError(_errno.ENOENT,
FileNotFoundError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 119, in test_addpackage
    pth_file.create()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_site.py", line 350, in create
    FILE = open(self.file_path, 'w')
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/@test_2322838_tmpæ.pth'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 100, in test_defaults
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp0iko6msd/bin/python' -> '/tmp/tmp0iko6msd/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 584, in setUp
    super().setUp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/test/test_regrtest.py", line 365, in setUp
    self.tmptestdir = tempfile.mkdtemp()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z/build/Lib/tempfile.py", line 359, in mkdtemp
    _os.mkdir(file, 0o700)
OSError: [Errno 28] No space left on device: '/tmp/tmp9418u2kk'

@bedevere-bot
Copy link

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

Hi! The buildbot s390x Fedora Clang 3.9 has failed when building commit c16a2a1.

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

Failed tests:

  • test_embed
  • test_zipfile
  • test_venv

Failed subtests:

  • test_prompt - test.test_venv.BasicTest
  • test_explicit_no_pip - test.test_venv.EnsurePipTest
  • test_init_pybuilddir - test.test_embed.InitConfigTests
  • test_no_pip_by_default - test.test_venv.EnsurePipTest
  • test_deactivate_with_strict_bash_opts - test.test_venv.BasicTest
  • test_isolation - test.test_venv.BasicTest
  • test_append_to_concatenated_zip_file - test.test_zipfile.StoredTestsWithSourceFile
  • setUpClass - test.test_socket.SendfileUsingSendTest
  • test_with_pip - test.test_venv.EnsurePipTest
  • test_init_pyvenv_cfg - test.test_embed.InitConfigTests
  • setUpClass - test.test_socket.SendfileUsingSendfileTest
  • test_write_filtered_python_package - test.test_zipfile.PyZipFileTests

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

== Tests result: FAILURE then FAILURE ==

406 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 44 sec
  • test_peg_generator: 2 min 27 sec
  • test_multiprocessing_spawn: 1 min 10 sec
  • test_multiprocessing_forkserver: 1 min
  • test_multiprocessing_fork: 54.2 sec
  • test_asyncio: 49.3 sec
  • test_signal: 47.0 sec
  • test_tokenize: 38.0 sec
  • test_io: 35.4 sec
  • test_pydoc: 31.3 sec

3 tests failed:
test_embed test_venv test_zipfile

16 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_readline test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

4 re-run tests:
test_embed test_socket test_venv test_zipfile

Total duration: 4 min 45 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 1226, in test_write_filtered_python_package
    self.assertTrue('SyntaxError' not in reportStr)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 182, in test_prefixes
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpn0g9vkn5/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 128, in test_prompt
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpg50414_o/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 100, in test_defaults
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp9pp9_qjv/bin/python' -> '/tmp/tmp9pp9_qjv/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 266, in test_upgrade
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp9gxmvo8s/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 537, in test_with_pip
    self.do_test_with_pip(False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 477, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpwu49g7kz/bin/python' -> '/tmp/tmpwu49g7kz/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_socket.py", line 5966, in setUpClass
    f.write(chunk)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 284, in test_isolation
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpm8ch1peg/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 1222, in test_write_filtered_python_package
    zipfp.writepy(packagedir, filterfunc=filter)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1994, in writepy
    self.write(fname, arcname)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1762, in write
    shutil.copyfileobj(src, dest, 1024*8)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 205, in copyfileobj
    fdst_write(buf)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1129, in write
    self._fileobj.write(data)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 128, in test_prompt
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpk70_vspt/bin/python' -> '/tmp/tmpk70_vspt/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 295, in test_symlinking
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpzs2ajfbw/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 384, in test_deactivate_with_strict_bash_opts
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp987h_tsa/bin/python' -> '/tmp/tmp987h_tsa/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 431, in test_explicit_no_pip
    self.run_with_capture(venv.create, self.env_dir, with_pip=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp40filhtu/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1196, in test_init_pybuilddir
    with self.tmpdir_with_python() as tmpdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Programs/_testembed' -> '/tmp/tmpaa_6dggb/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 1226, in test_write_filtered_python_package
    self.assertTrue('SyntaxError' not in reportStr)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1300, in __exit__
    self.close()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1824, in close
    self.fp.seek(self.start_dir)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1224, in test_init_pyvenv_cfg
    with self.tmpdir_with_python() as tmpdir, \
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Programs/_testembed' -> '/tmp/tmp8u4323ji/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 100, in test_defaults
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpr6f99ijb/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 367, in test_multiprocessing
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpy_btkcl_/bin/python' -> '/tmp/tmpy_btkcl_/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 426, in test_no_pip_by_default
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp48z1p2p1/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 426, in test_no_pip_by_default
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpu6cxelrz/bin/python' -> '/tmp/tmpu6cxelrz/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1224, in test_init_pyvenv_cfg
    with self.tmpdir_with_python() as tmpdir, \
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Programs/_testembed' -> '/tmp/tmpyhr3228s/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 318, in test_executable
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp0aenpo6b/bin/python' -> '/tmp/tmp0aenpo6b/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 284, in test_isolation
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpynyx_1nr/bin/python' -> '/tmp/tmpynyx_1nr/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 384, in test_deactivate_with_strict_bash_opts
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp84o76wes/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 1226, in test_write_filtered_python_package
    self.assertTrue('SyntaxError' not in reportStr)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1300, in __exit__
    self.close()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1825, in close
    self._write_end_record()
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1881, in _write_end_record
    self.fp.write(filename)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 295, in test_symlinking
    builder.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp_4cy9g_p/bin/python' -> '/tmp/tmp_4cy9g_p/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 431, in test_explicit_no_pip
    self.run_with_capture(venv.create, self.env_dir, with_pip=False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpn7vkksct/bin/python' -> '/tmp/tmpn7vkksct/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 318, in test_executable
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmphc6gmwnb/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 182, in test_prefixes
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmpbju9kfaw/bin/python' -> '/tmp/tmpbju9kfaw/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 367, in test_multiprocessing
    self.run_with_capture(venv.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp2ax_vr8i/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 1222, in test_write_filtered_python_package
    zipfp.writepy(packagedir, filterfunc=filter)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1994, in writepy
    self.write(fname, arcname)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1762, in write
    shutil.copyfileobj(src, dest, 1024*8)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/zipfile.py", line 1168, in close
    self._fileobj.seek(self._zinfo.header_offset)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1196, in test_init_pybuilddir
    with self.tmpdir_with_python() as tmpdir:
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_embed.py", line 1145, in tmpdir_with_python
    shutil.copyfile(self.test_exe, exec_copy)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Programs/_testembed' -> '/tmp/tmpb58eq7qb/_testembed'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 227, in test_overwrite_existing
    venv.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmp4bl9m0ip/bin/python'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 266, in test_upgrade
    self.run_with_capture(builder.create, self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp_4hyrzhk/bin/python' -> '/tmp/tmp_4hyrzhk/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 227, in test_overwrite_existing
    venv.create(self.env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 251, in setup_python
    copier(context.env_exe, path, relative_symlinks_ok=True)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/tmp/tmp65d5b16k/bin/python' -> '/tmp/tmp65d5b16k/bin/python3'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_zipfile.py", line 531, in test_append_to_concatenated_zip_file
    f.write(data)
OSError: [Errno 28] No space left on device


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 537, in test_with_pip
    self.do_test_with_pip(False)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 477, in do_test_with_pip
    self.run_with_capture(venv.create, self.env_dir,
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/test/test_venv.py", line 77, in run_with_capture
    func(*args, **kwargs)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 412, in create
    builder.create(env_dir)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 73, in create
    self.setup_python(context)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 243, in setup_python
    copier(context.executable, path)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/venv/__init__.py", line 186, in symlink_or_copy
    shutil.copyfile(src, dst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 272, in copyfile
    _fastcopy_sendfile(fsrc, fdst)
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang/build/python' -> '/tmp/tmpesa9h77p/bin/python'

@bedevere-bot
Copy link

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

Hi! The buildbot s390x Fedora Clang Installed 3.9 has failed when building commit c16a2a1.

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/570/builds/7) and take a look at the build logs.
  4. Check if the failure is related to this commit (c16a2a1) 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/570/builds/7

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

Click to see traceback logs
remote: Enumerating objects: 12, done.        
remote: Counting objects:   8% (1/12)        
remote: Counting objects:  16% (2/12)        
remote: Counting objects:  25% (3/12)        
remote: Counting objects:  33% (4/12)        
remote: Counting objects:  41% (5/12)        
remote: Counting objects:  50% (6/12)        
remote: Counting objects:  58% (7/12)        
remote: Counting objects:  66% (8/12)        
remote: Counting objects:  75% (9/12)        
remote: Counting objects:  83% (10/12)        
remote: Counting objects:  91% (11/12)        
remote: Counting objects: 100% (12/12)        
remote: Counting objects: 100% (12/12), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 13 (delta 8), reused 9 (delta 8), pack-reused 1        
From https://github.com/python/cpython
 * branch                  3.9        -> FETCH_HEAD
Reset branch '3.9'

Python/pytime.c:154:10: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion]
    if (!_Py_InIntegralTypeRange(time_t, intpart)) {
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
#define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
                                                                              ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
#define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
                                                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Python/pytime.c:207:14: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion]
        if (!_Py_InIntegralTypeRange(time_t, intpart)) {
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
#define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
                                                                              ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
#define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
                                                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
Python/pytime.c:392:10: warning: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion]
    if (!_Py_InIntegralTypeRange(_PyTime_t, d)) {
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:228:82: note: expanded from macro '_Py_InIntegralTypeRange'
#define _Py_InIntegralTypeRange(type, v) (_Py_IntegralTypeMin(type) <= v && v <= _Py_IntegralTypeMax(type))
                                                                              ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~
./Include/pymath.h:221:124: note: expanded from macro '_Py_IntegralTypeMax'
#define _Py_IntegralTypeMax(type) ((_Py_IntegralTypeSigned(type)) ? (((((type)1 << (sizeof(type)*CHAR_BIT - 2)) - 1) << 1) + 1) : ~(type)0)
                                                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
3 warnings generated.
./Modules/timemodule.c:116:13: warning: code will never be executed [-Wunreachable-code]
            PyErr_SetString(PyExc_OverflowError,
            ^~~~~~~~~~~~~~~
1 warning generated.
./Modules/_threadmodule.c:1587:19: warning: implicit conversion from '_PyTime_t' (aka 'long') to 'double' changes value from 9223372036854775 to 9223372036854776 [-Wimplicit-int-float-conversion]
    timeout_max = (_PyTime_t)PY_TIMEOUT_MAX * 1e-6;
                  ^~~~~~~~~~~~~~~~~~~~~~~~~ ~
1 warning generated.

/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/site-packages’: No such file or directory
/usr/bin/install: error writing '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/config-3.9-s390x-linux-gnu/libpython3.9.a': No space left on device
make: *** [Makefile:1638: libainstall] Error 1
make: *** Waiting for unfinished jobs....
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/patchlevel.h'/usr/bin/install: error writing '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/libpython3.9.a': No space left on device
: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No such file or directory
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/picklebufobject.h': No space left on device
rror: could not write to '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib-dynload/_ssl.cpython-39-s390x-linux-gnu.so': No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyarena.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pycapsule.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyctype.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/py_curses.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pydebug.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pydtrace.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyerrors.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyexpat.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyfpe.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyframe.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyhash.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pylifecycle.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pymacconfig.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pymacro.h': No space left on device
make: *** [Makefile:1687: sharedinstall] Error 1
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pymath.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pymem.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pyport.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pystate.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pystrcmp.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pystrhex.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pystrtod.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/Python-ast.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/Python.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pythonrun.h': No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/importlib’: No such file or directory
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pythread.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/pytime.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/rangeobject.h': No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/setobject.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/sliceobject.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/structmember.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/structseq.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/symtable.h': No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/sysmodule.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/token.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/traceback.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/tracemalloc.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/tupleobject.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/typeslots.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/ucnhash.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/unicodeobject.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/warnings.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create regular file '/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/include/python3.9/weakrefobject.h': No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
make: *** [Makefile:1597: inclinstall] Error 1
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/asyncio’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/collections’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/concurrent’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/concurrent’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/encodings’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/email’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/email’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/ensurepip’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/ensurepip’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/html’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/json’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/http’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/dbm’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xmlrpc’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/sqlite3’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/sqlite3’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/logging’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/wsgiref’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/urllib’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/lib2to3’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/ctypes’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/ctypes’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/ctypes’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/idlelib’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/idlelib’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/idlelib’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/distutils’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/distutils’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/distutils’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xml’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xml’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xml’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xml’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/xml’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/test’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/turtledemo’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/multiprocessing’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/multiprocessing’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/unittest’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/unittest’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/unittest’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/venv’: No such file or directory
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/venv’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/venv’: No space left on device
/usr/bin/install: cannot create directory ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/venv’: No space left on device
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/curses’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/pydoc_data’: No such file or directory
/usr/bin/install: cannot change permissions of ‘/home/dje/cpython-buildarea/3.9.edelsohn-fedora-z.clang-installed/build/target/lib/python3.9/zoneinfo’: No such file or directory
make: *** [Makefile:1482: libinstall] Error 1

@bedevere-bot
Copy link

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

Hi! The buildbot s390x Fedora LTO + PGO 3.9 has failed when building commit c16a2a1.

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/423/builds/181) and take a look at the build logs.
  4. Check if the failure is related to this commit (c16a2a1) 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/423/builds/181

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

Click to see traceback logs
remote: Enumerating objects: 12, done.        
remote: Counting objects:   8% (1/12)        
remote: Counting objects:  16% (2/12)        
remote: Counting objects:  25% (3/12)        
remote: Counting objects:  33% (4/12)        
remote: Counting objects:  41% (5/12)        
remote: Counting objects:  50% (6/12)        
remote: Counting objects:  58% (7/12)        
remote: Counting objects:  66% (8/12)        
remote: Counting objects:  75% (9/12)        
remote: Counting objects:  83% (10/12)        
remote: Counting objects:  91% (11/12)        
remote: Counting objects: 100% (12/12)        
remote: Counting objects: 100% (12/12), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 13 (delta 8), reused 9 (delta 8), pack-reused 1        
From https://github.com/python/cpython
 * branch                  3.9        -> FETCH_HEAD
Reset branch '3.9'

find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make[2]: [Makefile:1854: clean-retain-profile] Error 1 (ignored)
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:25,
    inlined from ‘assemble’ at Python/compile.c:6053:18:
Python/compile.c:5668:19: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      |         ~~~~~~~~~~^~~
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:25,
    inlined from ‘assemble’ at Python/compile.c:6053:18:
Python/compile.c:5668:19: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      |                   ^
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:0,
    inlined from ‘assemble’ at Python/compile.c:6053:0:
Python/compile.c:5668: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      | 
In function ‘assemble_lnotab’,
    inlined from ‘assemble_emit’ at Python/compile.c:5714:0,
    inlined from ‘assemble’ at Python/compile.c:6053:0:
Python/compile.c:5668: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
 5668 |         *lnotab++ = k;
      | 
At top level:
lto1: fatal error: error writing to /tmp/ccyyg7m5.s: No space left on device
compilation terminated.
lto-wrapper: fatal error: gcc returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[3]: *** [Makefile:602: python] Error 1
make[3]: *** Waiting for unfinished jobs....
At top level:
lto1: fatal error: error writing to /tmp/cc29HP1X.s: No space left on device
compilation terminated.
lto-wrapper: fatal error: gcc returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[3]: *** [Makefile:737: Programs/_testembed] Error 1
make[2]: *** [Makefile:531: build_all_generate_profile] Error 2
make[1]: *** [Makefile:507: profile-gen-stamp] Error 2
make: *** [Makefile:519: profile-run-stamp] Error 2

find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make: [Makefile:1854: clean-retain-profile] Error 1 (ignored)

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 2, 2020
ericvsmith pushed a commit that referenced this pull request Sep 2, 2020
…2059) (GH-22060)

(cherry picked from commit 749ed85)

Co-authored-by: han-solo <[email protected]>

Co-authored-by: han-solo <[email protected]>
xzy3 pushed a commit to xzy3/cpython that referenced this pull request Oct 18, 2020
… 2 `,` in format specifier (pythonGH-22036)

* Fixed `f-string/str.format` error description when using two `,` in format specifier.

Co-authored-by: millefalcon <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants