jasper added the comment:
FYI, the issue has been fixed now in the mips64 port of OpenBSD by "replacing
the previous/old floating point completion code with a C interface to the MI
softfloat code, implementing all MIPS IV specified floating point
opera
New submission from jasper :
While trying to get Python 2.6 working on OpenBSD/sgi (64-bit port)
I ran into the following during build:
OverflowError: signed integer is greater than maximum
I ran the command that triggered this by hand with -v added:
(sgi Python-2.6.3 40)$ export PATH; PATH
jasper added the comment:
And the build log on OpenBSD/sgi.
--
Added file: http://bugs.python.org/file15301/Python-2.6.3.log
___
Python tracker
<http://bugs.python.org/issue7
jasper added the comment:
After properly compiling with -O0, it actually gets a lot further in the
build. It crashes elsewhere though:
PYTHONPATH=/usr/obj/ports/Python-2.6.3/fake-sgi/usr/local/lib/python2.6
./python -Wi -tt
/usr/obj/ports/Python-2.6.3/fake-sgi/usr/local/lib/python2.6
jasper added the comment:
this little test program:
#include
int main(int argc, char*argv[])
{
printf("short = %d\n", sizeof(short));
printf("int = %d\n", sizeof(int));
printf("float = %d\n", sizeof(float));
printf("long = %d\n", sizeof(long));
jasper added the comment:
Removing --with-fpectl makes no difference.
I'll try the _PyHash_Double-thing later this weekend.
--
___
Python tracker
<http://bugs.python.org/i
New submission from Jasper Spaans :
big-bob:t spaans$ cat fak.py
import sys
from email.message import EmailMessage
from email.policy import SMTP
from email.headerregistry import Address
msg = EmailMessage(policy=SMTP)
a = Address(display_name='Extra Extra Read All About It This Line Doe
Jasper Spaans added the comment:
As can be seen above, 3.5 wraps the realname in a double quote, but 3.8 fails
to do so. Note that 3.5 also does not add a whitespace in front of the line
starting with "X:", so it is also not merged with the previous line when
parsing.
I guess we&
New submission from Jasper Spaans :
When creating multipart/signed messages, this currently require two
serialisation passes: once to extract the flattened contents to be signed, and
once to actually serialise the message.
The PR this ticket will be linked to contains a new class
Change by Jasper Spaans :
--
keywords: +patch
pull_requests: +17149
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/17695
___
Python tracker
<https://bugs.python.org/issu
Jasper Siepkes added the comment:
I'm another Illumos user that has crawled from under a rock ;-) to request not
to drop Illumos support.
--
nosy: +siepkes
___
Python tracker
<https://bugs.python.org/is
New submission from Jasper Trooster :
Sometimes when I type print in my code, the application crashes. Then a window
pops up, saying that the program suddenly stopped (description of error
message below). When I click on the option to reopen IDLE, nothing happens, I
have to manually reopen
Jasper Trooster added the comment:
Hey, thanks for the quick response. I have to add that, when going to the
download page to download site (https://www.python.org/downloads/) the big
yellow button that says "Download Python 3.6.5" downloads the 64-/32-bit
installer (at least, I t
Jasper St. Pierre added the comment:
Oh man, attaching the wrong diff and getting the diff wrong.
The issue I found with Python 2.7:
when creating a simple link in tar:
$ mkdir tar_test
$ cd tar_test
$ touch one
$ ln -s one two
$ cd ..
$ tar czf tar_test.tgz tar_test
It seems obvious that
Jasper St. Pierre added the comment:
Uh, I just noticed the "python2.6" in the traceback.
Looks like I *was* using 2.6 because Cygwin decided
to downgrade for some reason.
Uh, sorry about that.
--
___
Python tracker
<http://bu
New submission from Jasper St. Pierre :
http://docs.python.org/dev/library/reprlib.html
"""
Formatting methods for specific types are implemented as methods with a name
based on the type name. In the method name, TYPE is replaced by
string.join(string.split(type(obj).__name__,
Jasper St. Pierre added the comment:
Yes. Yes it would. In my opinion, it really shouldn't do this sort of name
mangling, as it's a terrible idea, but whatever.
--
___
Python tracker
<http://bugs.python.o
Jasper St. Pierre added the comment:
The documentation is just flat out wrong, actually:
if ' ' in typename:
parts = typename.split()
typename = '_'.join(parts)
The documentation is claiming the inverse.
I don't know why we would ever have a space
New submission from Jasper van den Bosch :
urlparse.urljoin successfully joins 'http://localhost/repo1' with a filename,
but not 'svn://localhost/repo1' (only scheme different). But the documentation
states that the svn: scheme is supported:
http://docs.python.org/library/u
19 matches
Mail list logo