Change by Kurt Mosiejczuk :
--
keywords: +patch
pull_requests: +28912
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/30721
___
Python tracker
<https://bugs.python.org/issu
New submission from Kurt Mosiejczuk :
Just like FreeBSD, MULTIARCH should not be passed to OpenBSD.
Just add another line like done for FreeBSD
--
components: Build
messages: 411032
nosy: kmosiejczuk
priority: normal
severity: normal
status: open
title: OpenBSD not MULTIARCH
type
Kurt Roeckx added the comment:
Do you have any idea when the next release will be? I think python is currently
our biggest blocker for getting OpenSSL 1.1.1 in Debian testing.
--
___
Python tracker
<https://bugs.python.org/issue32
Kurt Roeckx added the comment:
Christian,
Do you have any update on this? Any idea when we can expect relased python
versions that work with OpenSSL 1.1.1?
--
___
Python tracker
<https://bugs.python.org/issue32
Kurt Roeckx added the comment:
This are automated tests for the packages in Debian. I uploaded the pre9
version to unstable, and as a result of that all reverse dependencies got
tested. I don't have any experience with python myself.
Anyway, the openssl.cnf in Debian con
Kurt Roeckx added the comment:
This are the errors I'm currently getting testing with the pre9 verion in
Debian:
https://ci.debian.net/data/autopkgtest/testing/amd64/p/python2.7/865936/log.gz
https://ci.debian.net/data/autopkgtest/testing/amd64/p/python3.6/865937/log.gz
https://ci.debia
Kurt Roeckx added the comment:
The effect is the same as calling SSL_CTX_set_min_proto_version().
--
___
Python tracker
<https://bugs.python.org/issue31
Kurt Roeckx added the comment:
Note that the version in experimental only supports TLS 1.2 and 1.3 with the
default config. It's moved from fixed in the code, to the default config file.
I expect to upload that to unstable "soon", at which point people will be
affecte
New submission from Kurt Roeckx :
Here:
https://docs.python.org/3/library/ssl.html#ssl.SSLContext.check_hostname
And here:
https://docs.python.org/2/library/ssl.html#ssl.SSLContext.check_hostname
It uses ssl.PROTOCOL_TLSv1, which is a bad example. Please change it to
PROTOCOL_SSLv23 or
Kurt Dally added the comment:
My bad, I searched and found the issue, it very closely fit mine and the pickle
module is new to me. I hadn't yet got through the details of pickling.
Thanks for catching that.
Kurt
From: Mark Dickinson
To: thedomestic...@yahoo.com
Sent: Sat
New submission from Kurt Dally:
Creating a namedtuple and an instance of the namedtuple in a function then
returning the instance to the global namespace made the instance unpickleable,
as in Issue25665.
--
components: Library (Lib)
messages: 277236
nosy: Kurt
priority: normal
Kurt Rose added the comment:
I think this may in fact be a bug. There are other places in the socket module
where port is checked, create_connection() just seems to have been missed.
create_connection() and socket.connect() have different behavior:
>>> socket.create_connection( (
Kurt Rose added the comment:
Totally agree this needs to be managed carefully. My goal here was just to
raise awareness and see if there is consensus that the behavior should be
changed.
I came across this because an upstream process had a bug which led to
impossible TCP ports being
Kurt Rose added the comment:
Sorry, dumb mistake on my part. I should have been calling getpeername(), not
getsockname()
In that case the result is 80:
>>> socket.create_connection( ('google.com', 2**16 + 80) ).getpeername()
('74.125.239.41', 80)
The "
Kurt Rose added the comment:
I was incorrect -- the result of getsockname() appears to be some garbage port:
>>> socket.create_connection( ('google.com', 2**16 + 80) ).getsockname()
('10.225.89.86', 56446)
>>> socket.create_connection( ('google.com
New submission from Kurt Rose:
This appears to affect all versions of Python. In a behavior inherited from C,
TCP ports that are > 2 bytes are silently truncated.
Here is a simple reproduction:
>>> socket.create_connection( ('google.com', 2**16 + 80) )
Needs more
Kurt Roeckx added the comment:
Most such sites actually seem to have dropped support for SSLv3.
One site where it depends on the cipher string is bugs.cdburnerxp.se
--
___
Python tracker
<http://bugs.python.org/issue22
Kurt Roeckx added the comment:
SSLv3 does not support the TLS extensions so it's going to send a totally
different Client Hello. It will for instance not indicate with elliptic curves
it supports. So yes the behavior for SSLv3 and SSLv23 can be totally
different. But even with both S
Kurt Roeckx added the comment:
So this seems to be a function that just gets the certificate? You need to be
careful with this since a server could perfectly decide to send a different
certificate depending on the client hello it receives. Like if you support
ECDSA it might decide to send
Kurt Roeckx added the comment:
I did update the documentation to mention that, but it seems none of my
documentation changes got applied.
--
___
Python tracker
<http://bugs.python.org/issue22
Kurt Roeckx added the comment:
I've just signed the contributor agreement
--
___
Python tracker
<http://bugs.python.org/issue22935>
___
___
Python-bugs-list m
Kurt Roeckx added the comment:
I know what I uploaded to Debian experimental. And I can't promise that I'll
keep that define. I suggest you assume that NO_SSL3 will disable both.
--
___
Python tracker
<http://bugs.python.o
New submission from Kurt Roeckx:
Hi,
The attached patch makes python work when openssl doesn't have SSLv3 support.
It also updates the documentation, which has already improved a lot since my
original patch.
The current upstream openssl when compiled with no-ssl2 it defines
OPENSSL_NO
New submission from Kurt Rose:
int() ignores everything after a null byte when reporting an error message.
Here you can see an example of how this manifests, and why could be a problem.
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit(Intel)] on
win32
Type "help",
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue15663>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue16123>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue18823>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Kurt Rose:
The documentation in the resource module for get_page_size() is incorrect.
resource.getpagesize()
Returns the number of bytes in a system page. (This need not be the same as the
hardware page size.) This function is useful for determining the number of
bytes of
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue13504>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Kurt Seifried :
--
nosy: -kseifr...@redhat.com
___
Python tracker
<http://bugs.python.org/issue14579>
___
___
Python-bugs-list mailing list
Unsub
Kurt Seifried added the comment:
Please use CVE-2012-2135 for this issue as per
http://www.openwall.com/lists/oss-security/2012/04/25/3
--
nosy: +kseifr...@redhat.com
___
Python tracker
<http://bugs.python.org/issue14
Changes by Kurt Seifried :
--
nosy: -kseifr...@redhat.com
___
Python tracker
<http://bugs.python.org/issue13703>
___
___
Python-bugs-list mailing list
Unsub
Kurt Seifried added the comment:
I have assigned CVE-2012-1150 for this issue as per
http://www.openwall.com/lists/oss-security/2012/03/10/3
--
nosy: +kseifr...@redhat.com
___
Python tracker
<http://bugs.python.org/issue13
Kurt B. Kaiser added the comment:
Linux trader 2.6.38-2-686 #1 SMP Thu Apr 7 05:24:21 UTC 2011 i686 GNU/Linux
kbk@trader:~/Python/Py27$ aptitude show tk8.5
Package: tk8.5
...
Version: 8.5.9-2
Debian Linux Wheezy
Can't reproduce on 2.7.1+ 3.1.4+ 3.2.1beta 3.3alpha0 with Tk8.4
Kurt B. Kaiser added the comment:
Backported to 2.6 4Oct09 56387:490190cb4a57
--
stage: commit review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Kurt B. Kaiser added the comment:
tkinter.messagebox.Message sending rather
than str, so comparison with str failed. Always for "cancel", (almost?)
always for "yes".
Use the helper functions in tkinter.messagebox, which correct for that.
This hasn't worked for a lo
Kurt B. Kaiser added the comment:
Having a modified utf-8 codec will be useful. That said, it is an error
for Tcl/Tk to expose modified utf-8 externally, and that was fixed at
some point in Tk8.5. Since Tk is no longer sending 0xC080 for the %A
char, switching codecs in _tkinter.c won
Kurt B. Kaiser added the comment:
r70039 3.1 forward ported > 3.2 > default. Will be in 3.2.1.
--
resolution: accepted -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.py
Kurt B. Kaiser added the comment:
Rejecting for now, out of date, doesn't apply, not single topic.
--
resolution: out of date -> rejected
stage: test needed -> committed/rejected
status: open -> closed
___
Python tracker
<http:
Kurt B. Kaiser added the comment:
Tcl/Tk uses modified utf-8 internally. This includes using 0xC080, a multibyte
Unicode null character, for embedded nulls that work with C's null terminated
strings. Java does the same.
Note that typing Ctrl-space and Ctrl-2 are conventional ways to
Changes by Kurt B. Kaiser :
--
assignee: -> kbk
nosy: +kbk
resolution: works for me -> out of date
stage: -> committed/rejected
status: pending -> closed
___
Python tracker
<http://bugs.pytho
Kurt B. Kaiser added the comment:
Fixed in 2.7 and forward ported.
--
assignee: -> kbk
resolution: -> fixed
stage: -> committed/rejected
status: open -> closed
type: -> crash
versions: +Python 3.2, Python 3.3 -Python 2.6, Python 3.0
___
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue10907>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Kurt Schwehr :
Psycopg2 has a mogrify method on the cursor that returns the string that would
be sent to the database for an execute. Any chance that could be added to
pysqlite? It's definitely helpful for debugging and is a fantastic tool when
teaching people data
Kurt B. Kaiser added the comment:
Works for me on 2.6.4, trunk, and 3.2a0 - arch linux
Tk 8.4
--
keywords: +needs review
resolution: -> works for me
___
Python tracker
<http://bugs.python.org/iss
Changes by Kurt B. Kaiser :
--
priority: normal -> high
___
Python tracker
<http://bugs.python.org/issue1028>
___
___
Python-bugs-list mailing list
Unsubscri
Kurt B. Kaiser added the comment:
In addition, the /tmp/tmp.txt file is only writeable by the user that created
it. On the buildbot machine I'm admin'ing, the buildslave user created the
file and user neal's run of build.sh on the trunk fails because it can't write
the f
Changes by kurt :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue7526>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.p
New submission from kurt :
I am using the Menubutton to provide an accelerator effect via the
underline option.
When I import the basic widget via from tkinter import * the widget
performs as expected (F_ile) is activated on pressing Alt+F and the menu
is presented.
Conversely when using the
Kurt B. Kaiser added the comment:
Is there some reason that this is not being checked
in? The build has been broken for five days. IMO,
either revert the offending code or check this in.
--
priority: normal -> high
___
Python tracker
&l
Changes by Kurt B. Kaiser :
--
nosy: +kbk
priority: normal -> high
___
Python tracker
<http://bugs.python.org/issue6717>
___
___
Python-bugs-list mai
Changes by Kurt B. Kaiser :
--
status: open -> pending
___
Python tracker
<http://bugs.python.org/issue6941>
___
___
Python-bugs-list mailing list
Unsubscri
Kurt B. Kaiser added the comment:
Reviewed, built, tests ok.
Linux trader 2.6.18-ARCH #1 SMP PREEMPT Sun Nov 19 09:14:35 CET 2006
i686 Intel(R) Pentium(R) 4 CPU 2.40GHz GenuineIntel GNU/Linux
vote +1 weight +0.1 :-)
--
nosy: +kbk
priority: -> nor
Kurt B. Kaiser added the comment:
bah. I looked twice for a prior bug and missed it! Sorry
--
___
Python tracker
<http://bugs.python.org/issue7148>
___
___
Kurt B. Kaiser added the comment:
08jpurcell unresponsive, ignoring for now (but see suggestions below)
bdouglasoz: had a firewall blocking the subprocess, apparently works
for her now. I'd point out that Notepad is just an editor, IDLE gives
you much more. Linux is great, but IDLE
New submission from Kurt B. Kaiser :
buildbots failing since r75412:
testSocketServer (test.test_ssl.ThreadedTests) ... Traceback (most
recent call last):
File "/home/buildslave/python-trunk/trunk.norwitz-x86/build/Lib/
SocketServer.py", line 282, in _handle_reque
New submission from Kurt B. Kaiser :
rev 74095
http://svn.python.org/view?view=rev&revision=74095
didn't create the unittest dir during installation.
unittest isn't installed in its final location.
--
assignee: benjamin.peterson
components: Build
files: Makefile.pre.in.
New submission from Kurt McKee :
At <http://docs.python.org/dev/howto/urllib2.html>,
"HHTPBasicAuthHandler" should of course be "HTTP..."
--
assignee: georg.brandl
components: Documentation
messages: 90769
nosy: georg.brandl, kurtmckee
severity: normal
status:
New submission from Kurt B. Kaiser :
Rev 73196
http://svn.python.org/
view?view=rev&revision=73196
Caused regression on
http://bugs.python.org/issue1503294
when running build.sh:
(gdb) r -Wi
Starting program: /home/neal/python/trunk/
python -Wi
warning: Unable to find dynamic li
Kurt B. Kaiser added the comment:
Superceeded by 6075.
--
assignee: -> kbk
nosy: +kbk
resolution: -> later
status: open -> closed
superseder: -> Patch for IDLE/OS X to work with Tk-Cocoa
___
Python tracker
<http://bugs.pytho
Kurt B. Kaiser added the comment:
Bug exhibits on Linux with Tk 8.4, but requires a couple hundred
characters to show up. Also goes away if MultiCall is disabled.
--
___
Python tracker
<http://bugs.python.org/issue5
Kurt B. Kaiser added the comment:
Occurs with and w/o the subprocess, but sooner (fewer char) with the
subprocess.
If the MultiCall wrapper on the EditorWindow Text widget is disabled,
the bug disappears.
--
versions: +Python 2.6, Python 3.1, Python 3.2
Kurt B. Kaiser added the comment:
As a workaround, if you need the tooltip, select Edit / Show Calltip
from the menu or use the hotkey to 'reopen' the tooltip. That will get
you another 60 characters. Otherwise, just hit esc to close the
tooltip and your keystrokes w
Kurt B. Kaiser added the comment:
Not issue 1529353. Edit window stops updating after about 60
keystrokes when a tooltip window is active.
1. Strings not necessary. Only occurs when a tooltip is active. For
example, if rz is undefined, entering rz( followed by a long key
sequence won
Kurt B. Kaiser added the comment:
>>> type(sys.stdin)
Don't attempt sys.stdin._RPCProxy_methods lest you be turned to
stone ;-)
We didn't implement all the features of stdin as it didn't seem
necessary. Did you have a specific reason to access
stdin.fileno()
Kurt B. Kaiser added the comment:
Couple of comments. First, your messages seem to indicate that
you have both Python24 and Python26 installed. Although that
shouldn't cause problems, it might in your case. If you are no
longer using Python24, please uninstall it.
First, open your Wi
Kurt B. Kaiser added the comment:
IDLE doesn't control window placement - that's left to Tk to handle.
Hopefully it will get better with time. Once you take control, you
have to handle all the window placement, which is one of the things
that window managers are expert at, suppos
Kurt B. Kaiser added the comment:
r72227.
How's your test code coming? A relative Win filename with leading
spaces should be found even when there's a file of same name but no
spaces.
--
keywords: +26backport
___
Python trac
Kurt B. Kaiser added the comment:
r71998 Thanks for the patch!
backport to 30-maint.
If OP has further problems getting installation working, delete .idlerc
directory.
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
stage: patch review -> commit review
versions
Kurt B. Kaiser added the comment:
I'd welcome a test, please provide one. I actually wrote a small test
code so I could understand the problem, but didn't include it.
The 'grep dialog' sends its output to an OutputWindow labelled *Output*
as a series of lines. This
Kurt B. Kaiser added the comment:
Added a regex to handle win paths w/spaces.
A regex match may not be the file desired.
Try all the patterns until a valid file is found.
r71995.
Let me know if you can find a failing corner case.
port to 3 and -maint.
--
assignee: -> kbk
n
Changes by Kurt B. Kaiser :
--
nosy: +kbk
priority: -> high
___
Python tracker
<http://bugs.python.org/issue5764>
___
___
Python-bugs-list mailing list
Un
Kurt B. Kaiser added the comment:
This may affect the Windows Installer, specifically
the IDLE shortcut and the "Edit with IDLE" right
click functionality. See #5487.
--
superseder: -> Parts of Tkinter missing (but not when runn
Kurt B. Kaiser added the comment:
Opened a bug to get the -n switch removed from
the Windows Installer "Edit with IDLE" function.
--
superseder: -> Parts of Tkinter missing (but not when running from IDLE)
___
Python t
New submission from Kurt B. Kaiser :
1. On 2.7/3.1 multiple copies of IDLE can be
run
simultaneously, so the -n switch used in the
Windows Start menu shortcut with "Edit with
IDLE" should be eliminated.
2. On 3.1, the idle script has been renamed
idle3.
This may interact wi
Kurt B. Kaiser added the comment:
I understood Martin completely. The bot is coming RSN. My use
of 'pending' was intended to answer the exact question you just
asked. Maybe I should use Stage: 'commit review'.
Forwardport to py3k: r71952
Backport to 30-maint: r719
Kurt B. Kaiser added the comment:
Backported to release26-maint: r71911
Also issue for 3.0.1, which distributes Tk8.5 on Windows.
Was forwardported to py3k: r71189
Backported to release30-maint: r71944
--
status: pending -> closed
versions: +Python
Changes by Kurt B. Kaiser :
--
components: +IDLE -Build
keywords: +26backport
___
Python tracker
<http://bugs.python.org/issue5783>
___
___
Python-bugs-list mailin
Kurt B. Kaiser added the comment:
OK, thanks, Martin. I'll use 'pending' that way (close after a
while if the bot hears nothing further).
Changing component to "IDLE'.
release26-maint: r71908, r71909
--
___
Python tracker
New submission from Kurt McKee :
In the unittest documentation a distinction is made between the word
"error" and "failure". However, the description for the
TestCase.assertTrue() function reads:
"Signal a test failure if expr is false; the explanation for the error...&
Kurt B. Kaiser added the comment:
The issue that Terry Reedy raised is due to 68801 being forward
ported to py3k but not backported to 2.6-maint or 3.0-maint.
Access in 2.6.2 happens to work because there's a redirect on
the website which points to the correct doc release. But 3.0.1
is b
Kurt B. Kaiser added the comment:
r71812 in trunk. Will port to 3-head 30-maint 26-maint.
Thanks for the patch!
--
resolution: -> accepted
status: open -> pending
___
Python tracker
<http://bugs.python.org/
Changes by Kurt B. Kaiser :
--
assignee: -> kbk
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue5783>
___
___
Python-bugs-list mailing list
Un
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue5756>
___
___
Python-bugs-list mailing list
Unsubscribe:
Kurt B. Kaiser added the comment:
So the error during libinstall should be ignored
http://docs.python.org/dev/results/make-install.out
--
___
Python tracker
<http://bugs.python.org/issue5
New submission from Kurt B. Kaiser :
Try running it as a script:
File "Lib/lib2to3/tests/data/py3_test_grammar.py", line 130
x = ...
^
SyntaxError: invalid syntax
Furthermore, testEllipsis seems invalid. What is intended?
>>> class C:
def __getitem__
Kurt B. Kaiser added the comment:
r71126
-e only opens edit window, not shell
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Kurt B. Kaiser added the comment:
r71126. Thanks to everyone for all the work on this!
Note: I still need to patch the Windows install to
bind .py files to a different command string. The
-e option now only opens an editor window, but I need
to remove the -n option.
--
resolution
Kurt B. Kaiser added the comment:
Thanks for the research on the home key toggle. Let's take that
to issue3851, it seems it's different from the rest of this
issue.
--
nosy: +kbk
superseder: -> IDLE: Pressing "Home" on Windows places cursor before ">
Kurt B. Kaiser added the comment:
Weeble found the problem: it's the numlock key interacting
with a bug. I can reproduce it when I latch numlock.
http://bugs.python.org/msg80478
--
nosy: +weeble
resolution: works for me -> accepted
status: pending
Kurt B. Kaiser added the comment:
This wasn't backported to 2.5 as it's trivial and life
is short.
I have a clean install of 3.0.1 from the msi installer,
running on an eeePC 1000HA, XP Home, tk 8.5.
If I type a string at the >>> prompt in the IDLE shell
and hit the home k
Changes by Kurt B. Kaiser :
--
assignee: -> kbk
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue5594>
___
___
Python-bugs-list mailing list
Un
Kurt B. Kaiser added the comment:
Rev 62545 to 2.6 was forward ported to 3.0 on 4May,
r62716. I'm using py3k HEAD and it works the same
as 2.6: pressing Home toggles beween the left margin
and the start of the code text. It works the same way
on Linux and Windows XP.
Won't fix, be
Kurt B. Kaiser added the comment:
As far as typing in the comment widget goes - it
works fine if you
don't
add CR at the end of the lines until you go back
and edit it by
inserting some text. Then the faulty
wordwrapping kicks in, and it
has
to be fixed by removing all the extra s
Kurt B. Kaiser added the comment:
Why doesn't someone fix this comment widget?? It was
like this on SF, too. Guess I've got to dive in at
some point...second guessing the wrapping drives me nuts!
--
___
Python tracker
<http://bu
Kurt B. Kaiser added the comment:
The issue of the cursor moving to the left of >>> in the
shell is
separate. See also #3851. The current action of the home
key,
released in 2.6, is from patch 1196903. @tjreedy, if in
2.6 you
type >>> syzygy and hit home, the cursor mov
Kurt B. Kaiser added the comment:
It appears that this s/b closed, but Tracker doesn't automagically
close 'pending' issues like SF did.
--
assignee: -> ronaldoussoren
nosy: +kbk
status: pending -> closed
___
Kurt B. Kaiser added the comment:
Apparently this can be closed.
--
assignee: -> kbk
nosy: +kbk
status: pending -> closed
___
Python tracker
<http://bugs.python.org/
Kurt B. Kaiser added the comment:
My error, I was thinking of Debian's use of 'pending'. On Sourceforge,
setting an issue to pending would cause it to automatically close after
awhile if there was not further response. On this Tracker, we would use
that status the same way
Kurt B. Kaiser added the comment:
Status should not be pending unless issue is assigned and a resolution
is in progress. Issue only reported on 2.5 as far as I can tell, let's
see if it gets reported again for a later version of Python/Tk. We
appear to have a workaround for Window
1 - 100 of 238 matches
Mail list logo