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
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 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
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 Mueller :
in documentation of "signal"
http://docs.python.org/library/signal.html
-
signal.SIG_DFL
This is one of two standard signal handling options; it will simply
perform the default function for the signal. For exampl
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: [email protected]
___
Python tracker
<http://bugs.python.org/issue13
Changes by Kurt Seifried :
--
nosy: [email protected]
___
Python tracker
<http://bugs.python.org/issue13703>
___
___
Python-bugs-list mailing list
Unsub
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 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
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:
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:
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:
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:
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 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: [email protected]
___
Python tracker
<http://bugs.python.org/issue14
Changes by Kurt Seifried :
--
nosy: [email protected]
___
Python tracker
<http://bugs.python.org/issue14579>
___
___
Python-bugs-list mailing list
Unsub
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",
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
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 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...&
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
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
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
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 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:
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:
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:
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
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 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
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:
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:
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( (
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 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: [email protected]
Sent: Sat
Kurt B. Kaiser added the comment:
fixed at 53042.
--
priority: high -> normal
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
New submission from Kurt B. Kaiser:
The control-spacebar binding is used in IDLE to
force open the completions window. It's causing
IDLE to exit with a utf8 decode error. Attached
is
a Tkinter cut-down
exhibiting the problem and a patch.
The cutdown runs ok on 2.6 but not on py3k be
Kurt B. Kaiser added the comment:
Heh, I see we have the same damn problem SF had: when a comment is
edited,
it doesn't re-wrap properly when submitted. You have to remove the
returns
manually after editing.
__
Tracker <[EMAIL PROTECTED
Kurt B. Kaiser added the comment:
Nope, you have to make sure not to type too wide.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1028>
__
___
Python-bugs-list
Changes by Kurt B. Kaiser:
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1028>
__
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mai
Kurt B. Kaiser added the comment:
Well, maybe someday Tk will send a multibyte unicode
character. Update the patch.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1028>
__Index: Module
Kurt B. Kaiser added the comment:
OK, thanks for the review! I suppose Tk is sending a bad string.
r57540
--
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Changes by Kurt B. Kaiser:
--
assignee: -> kbk
keywords: +py3k
nosy: +kbk
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1130>
__
___
Python-bugs-li
Kurt B. Kaiser added the comment:
r58309. Thanks for the Patch!
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
r58310. Thanks for the nice patch! Looks better!
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
I think it would be better if a dialog popped up (before
trying to set up the subprocess!) with the warning. It
should have a checkbox, "Don't show this again." And it
should be something we can reuse in other situations.
Store a tag in the us
Kurt B. Kaiser added the comment:
r58396
Thanks for the patch!
--
assignee: -> kbk
priority: -> normal
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs
Kurt B. Kaiser added the comment:
r58398. Thanks for the report.
Solution a little different than Tal Einat's. Please test.
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.
Kurt B. Kaiser added the comment:
Appears this was fixed at r55818, though with a typo. Module
heavily rewritten since then to use the inspect module. The
example below now works without further changes.
--
resolution: -> out of date
status: open ->
Kurt B. Kaiser added the comment:
absent further response, closing as
unreproducible.
--
assignee: -> kbk
keywords: +patch
nosy: +kbk
resolution: fixed -> works for me
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http
Kurt B. Kaiser added the comment:
Ctrl-
right
does jump
to the
ends.
Behaviour
is
slightly
strange,
but
useful.
Let Tk
handle it.
--
keywords: +patch
resolution: -> works for me
status: open -> closed
_
Tracker <[EMAIL PROTECTE
Changes by Kurt B. Kaiser:
--
assignee: -> ronaldoussoren
nosy: +ronaldoussoren
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1691411>
_
Changes by Kurt B. Kaiser:
--
keywords: +patch
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1691411>
_
___
Python-bugs-list mailing list
Unsubs
Kurt B. Kaiser added the comment:
r58403. Thanks for the patch!
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
r58404. Thanks for the patch!
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
I caught the first part, but not the second using GNU/Linux.
I think that eol_convention can be a class variable,
since os.linesep isn't going to change from file to file.
Thanks for the report!
r58465.
__
Tracker &l
Kurt B. Kaiser added the comment:
Thanks for the patch, it will definitely be applied once I
finish reviewing it! Good job splitting off TkTextPercolator
and inheriting from Delegator.
--
assignee: -> kbk
priority: -> normal
__
Tracker &
Kurt B. Kaiser added the comment:
What change was required to allow Squeezer and ShellLogger
to co-exist?
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1253>
__
__
Kurt B. Kaiser added the comment:
Despite your explanation, I don't understand what is being
accomplished here. Delegates are not intended to be callable.
They have methods, e.g. insert, which are callable, and the
insert call is propagated down the chain by calls like
(from ColorDele
Kurt B. Kaiser added the comment:
First, I'm changing my mind about Percolator inheriting from
Delegator. A Percolator acts as a container for Delegators:
it "hasa" (chain) of them. But it fails "isa" Delegator.
It has no use for the Delegator's caching, and cha
Kurt B. Kaiser added the comment:
I'll respond further shortly. In the meantime, please notice that
Delegator3.py works the same whether or not your Delegator.__call__()
method is commented out. That's because you needed to define __call__()
methods in your filters.
We are still
Kurt B. Kaiser added the comment:
r58700. Thanks for the patch!
(Used OK/Cancel and simplified message.)
--
assignee: -> kbk
nosy: +kbk
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http
Kurt B. Kaiser added the comment:
I believe this is a duplicate of
http://bugs.python.org/issue1342
and not related to IDLE.
--
nosy: +kbk
resolution: -> duplicate
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
On systems other than Windows, people generally prefer to
leave as much
flexibility as possible by not binding various combinations
of modifiers to
the callback associated with a . If you need this
change, add a
binding as noamr suggests
Changes by Kurt B. Kaiser:
--
assignee: kbk ->
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1004696>
_
___
Python-bugs-list mailing li
Changes by Kurt B. Kaiser:
--
assignee: -> kbk
keywords: +patch
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1334>
__
___
Python-bugs-li
Kurt B. Kaiser added the comment:
Can I ask you for an update? This no longer applies cleanly with the
recent changes to configDialog.py, and I suspect you might have some
further cleanup.
--
assignee: -> kbk
nosy: +kbk
resolution: -> out o
Kurt B. Kaiser added the comment:
Prior to the 13:17:41 update:
r58710.
Minor formatting changes.
I figured you might have an update :-) It's good to let these new
modules
age a bit :-) Well, maybe not that long...
renamed tabbedPages.py -> tabbedpages.py to conform to PEP 8.
Nic
Kurt B. Kaiser added the comment:
Well, I already checked it in. Please synch to svn and send me an update
against that. Note that I renamed tabbedPages.py.
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/iss
Kurt B. Kaiser added the comment:
> 1) Should Delegator delegate calls to callables
No, I agree they should. The question is whether it's necessary to add a
__call__() method to the Delegator class. I claim you can do what you want
to do without it. It serves only one purpose th
Changes by Kurt B. Kaiser:
Added file: http://bugs.python.org/file8668/example1a.py
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1252>
__
___
Python-bugs-list
Changes by Kurt B. Kaiser:
Added file: http://bugs.python.org/file8669/example2.py
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1252>
__
___
Python-bugs-list
Kurt B. Kaiser added the comment:
Further response to your 27Oct:
> That's it.
There is more. The Delegator mixin exposes its delegate attribute.
Without that, it would not be possible to pass e.g. insert() down the
chain because (in the case of the Text percolator) insert() is found
Changes by Kurt B. Kaiser :
--
nosy: +kbk
___
Python tracker
<http://bugs.python.org/issue10907>
___
___
Python-bugs-list mailing list
Unsubscribe:
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 :
--
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:
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
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:
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:
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:
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:
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:
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 <[EMAIL PROTECTED]> added the comment:
Thanks. Another question: when the shell starts, do you
see the text
No Subprocess
to the right of the IDLE version, e.g.
IDLE 2.6a3 No Subprocess
__
Tracker <[EMAIL
Kurt B. Kaiser <[EMAIL PROTECTED]> added the comment:
Sorry for the delay.
OK, we are getting closer. Please tell me exactly how you start IDLE.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser <[EMAIL PROTECTED]> added the comment:
Yes, removing the -n is the way to fix your problem. We went to quite
a bit of effort to run user code from scratch on each Run/F5 using the
subprocess. Running without the subprocess is considered 'expert' mode
these
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
keywords: +patch
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2704>
__
___
Python-bugs
Kurt B. Kaiser <[EMAIL PROTECTED]> added the comment:
No response from OP, closing.
--
resolution: -> works for me
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs
Kurt B. Kaiser <[EMAIL PROTECTED]> added the comment:
When this is running, what happens if you hit Control-c a few times,
especially in the first few seconds? Does it abort with a
KeyboardInterrupt? Does it stop responding to Control-c after the window
fills up?
Note that IDLE slow
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
assignee: -> kbk
nosy: +kbk
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2913>
__
___
Pyt
Kurt B. Kaiser <[EMAIL PROTECTED]> added the comment:
BTW, instead of a reboot, use Task Manager (or whatever they needlessly
renamed it to on Vista :) to kill all python processes. That should free
up your machine.
__
Tracker <[EMAIL PROTECTE
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
resolution: -> wont fix
status: open -> closed
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
nosy: +kbk
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2884>
___
___
Python
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
nosy: +kbk
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2775>
___
___
Python
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>:
--
nosy: +kbk
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2917>
___
___
Python
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
Kurt B. Kaiser added the comment:
r59463
Thanks for the patch!
--
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Kurt B. Kaiser added the comment:
Do you have any further comments on this issue?
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1252>
__
___
Python-bugs-list
Kurt B. Kaiser added the comment:
r59468
Thanks for the update!
--
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1612746>
_
___
Kurt B. Kaiser added the comment:
This is very useful!
However, it isn't fully baked. Please test more
before submitting patches. Try to break them on
corner cases.
import CallTips
CallTips.CallTips(
AttributeError: 'NoneType' object has no attribute
'splitlines'
1 - 100 of 238 matches
Mail list logo