[issue37595] Python 3.7.4 does not build on Raspbian Buster

2019-08-01 Thread Kal Sze
Kal Sze added the comment: Yes, removing --enable-optimizations and keeping all other configure options allows me to build. However, I think most people *do* want optimizations, especially because the Raspberry Pi itself already isn't very fast

[issue37595] Python 3.7.4 does not build on Raspbian Buster

2019-07-31 Thread Kal Sze
Kal Sze added the comment: Sorry, I meant most up-to-date version of binutils in Raspbian *Buster* in my previous message. -- ___ Python tracker <https://bugs.python.org/issue37

[issue37595] Python 3.7.4 does not build on Raspbian Buster

2019-07-31 Thread Kal Sze
Kal Sze added the comment: I looked at my build log again. The very first line that jumps out as abnormal is this: /usr/bin/ld: /usr/bin/ld: DWARF error: invalid abstract instance DIE ref A quick DuckDuckGoing suggests that this *may* be related to a broken version of binutils: https

[issue37595] Python 3.7.4 does not build on Raspbian Buster

2019-07-14 Thread Kal Sze
New submission from Kal Sze : Like the title says. Tried building with these `configure` options: --enable-optimizations \ --with-lto \ --enable-shared \ --enable-loadable-sqlite-extensions \ --enable-ipv6 \ --with-system-expat \ --with-system-ffi

[issue34155] email.utils.parseaddr mistakenly parse an email

2018-11-08 Thread Kal Sze
Kal Sze added the comment: Another failure case: >>> from email.utils import parseaddr >>> parseaddr('fo@o...@bar.com') ('', 'fo@o') If I understand the RFC correctly, the correct results should be ('', '') because there are two '@' signs. The first '@' would

[issue34986] python finds test modules from the wrong directory during PGO build

2018-10-14 Thread Kal Sze
Kal Sze added the comment: Oops, sorry for the noise. This is mostly a duplicate of #34985 because the crash log attachment was too big and caused the issue tracker's proxy server to return an error code, so I thought the initial bug report creation failed. An e-mail confirmation arrived

[issue34986] python finds test modules from the wrong directory during PGO build

2018-10-14 Thread Kal Sze
New submission from Kal Sze : OS: Ubuntu Desktop 18.04.1 x86-64 Python 3.7.0 When trying to build Python 3.7 from source, with the `--enable-shared --enable-optimizations --with-lto` configure options, python needs to run the test suite in order to generate PGO data. However, it turns out

[issue34985] python finds test modules from the wrong directory during PGO build

2018-10-14 Thread Kal Sze
New submission from Kal Sze : OS: Ubuntu Desktop 18.04.1 x86-64 Python 3.7.0 When trying to build Python 3.7 from source, with the `--enable-shared --enable-optimizations --with-lto` configure options, python needs to run the test suite in order to generate PGO data. However, it turns out