[issue46446] OpenBSD not MULTIARCH

2022-01-20 Thread Kurt Mosiejczuk
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

[issue46446] OpenBSD not MULTIARCH

2022-01-20 Thread Kurt Mosiejczuk
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

[issue32947] Support OpenSSL 1.1.1

2018-09-30 Thread Kurt Roeckx
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

[issue32947] Support OpenSSL 1.1.1

2018-09-19 Thread Kurt Roeckx
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

[issue32947] Support OpenSSL 1.1.1

2018-08-22 Thread Kurt Roeckx
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

[issue32947] Support OpenSSL 1.1.1

2018-08-22 Thread Kurt Roeckx
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

[issue31453] Debian Sid/Buster: Cannot enable TLS 1.0/1.1 with PROTOCOL_TLS

2018-05-24 Thread Kurt Roeckx
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

[issue31453] Debian Sid/Buster: Cannot enable TLS 1.0/1.1 with PROTOCOL_TLS

2018-05-24 Thread Kurt Roeckx
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

[issue32008] Example suggest to use a TLSv1 socket

2017-11-11 Thread Kurt Roeckx
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

[issue28250] typing.NamedTuple instances are not picklable Two

2016-09-24 Thread Kurt Dally
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

[issue28250] typing.NamedTuple instances are not picklable Two

2016-09-22 Thread Kurt Dally
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

[issue24169] sockets convert out-of-range port numbers % 2**16

2015-05-13 Thread Kurt Rose
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( (&#

[issue24169] sockets convert out-of-range port numbers % 2**16

2015-05-12 Thread Kurt Rose
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

[issue24169] sockets convert out-of-range port numbers % 2**16

2015-05-12 Thread Kurt Rose
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 "

[issue24169] sockets convert out-of-range port numbers % 2**16

2015-05-12 Thread Kurt Rose
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&#

[issue24169] sockets convert out-of-range port numbers % 2**16

2015-05-12 Thread Kurt Rose
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

[issue22935] Disabling SSLv3 support

2014-12-12 Thread Kurt Roeckx
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

[issue22935] Disabling SSLv3 support

2014-12-12 Thread Kurt Roeckx
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

[issue22935] Disabling SSLv3 support

2014-12-12 Thread Kurt Roeckx
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

[issue22935] Disabling SSLv3 support

2014-12-08 Thread Kurt Roeckx
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

[issue22935] Disabling SSLv3 support

2014-12-01 Thread Kurt Roeckx
Kurt Roeckx added the comment: I've just signed the contributor agreement -- ___ Python tracker <http://bugs.python.org/issue22935> ___ ___ Python-bugs-list m

[issue22935] Disabling SSLv3 support

2014-11-24 Thread Kurt Roeckx
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

[issue22935] Disabling SSLv3 support

2014-11-24 Thread Kurt Roeckx
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

[issue21546] int('\0') gives wrong error message

2014-05-20 Thread Kurt Rose
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",

[issue15663] Investigate providing Tcl/Tk 8.5 with OS X installers

2014-02-01 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue15663> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16123] IDLE - deprecate running without a subprocess

2014-02-01 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue16123> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18823] Idle: use pipes instead of sockets to talk with user subprocess

2014-02-01 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue18823> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20468] resource module documentation is incorrect

2014-01-31 Thread Kurt Rose
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

[issue13504] Meta-issue for "Invent with Python" IDLE feedback

2013-08-14 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue13504> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14579] Vulnerability in the utf-16 decoder after error handling

2012-04-25 Thread Kurt Seifried
Changes by Kurt Seifried : -- nosy: -kseifr...@redhat.com ___ Python tracker <http://bugs.python.org/issue14579> ___ ___ Python-bugs-list mailing list Unsub

[issue14579] Vulnerability in the utf-16 decoder after error handling

2012-04-24 Thread Kurt Seifried
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

[issue13703] Hash collision security issue

2012-03-09 Thread Kurt Seifried
Changes by Kurt Seifried : -- nosy: -kseifr...@redhat.com ___ Python tracker <http://bugs.python.org/issue13703> ___ ___ Python-bugs-list mailing list Unsub

[issue13703] Hash collision security issue

2012-03-09 Thread Kurt Seifried
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

[issue7738] IDLE hang when tooltip comes up in Linux

2011-05-12 Thread Kurt B. Kaiser
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

[issue5559] IDLE Output Window 's goto fails when path has spaces

2011-05-12 Thread Kurt B. Kaiser
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/

[issue11896] Save on Close fails in IDLE, from Linux system

2011-05-12 Thread Kurt B. Kaiser
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

[issue1028] Tkinter binding involving Control-spacebar raises unicode error

2011-05-11 Thread Kurt B. Kaiser
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&#

[issue1028] Tkinter binding involving Control-spacebar raises unicode error

2011-05-11 Thread Kurt B. Kaiser
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

[issue1350] IDLE - CallTips enhancement - show full doc-string in new window

2011-05-10 Thread Kurt B. Kaiser
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:

[issue1028] Tkinter binding involving Control-spacebar raises unicode error

2011-05-10 Thread Kurt B. Kaiser
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

[issue3841] IDLE: quirky behavior when displaying strings longer than 4093 characters

2011-03-25 Thread Kurt B. Kaiser
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

[issue4676] python3 closes + home keys

2011-03-25 Thread Kurt B. Kaiser
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 ___

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-03-14 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue10907> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9506] sqlite3 mogrify - return query string

2010-08-04 Thread Kurt Schwehr
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

[issue7738] IDLE hang when tooltip comes up in Linux

2010-07-12 Thread Kurt B. Kaiser
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

[issue1028] Tkinter binding involving Control-spacebar raises unicode error

2010-07-12 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- priority: normal -> high ___ Python tracker <http://bugs.python.org/issue1028> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7881] Hardcoded path, unsafe tempfile in test_logging

2010-02-07 Thread Kurt B. Kaiser
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

[issue7526] tkinter menubutton underline behaviour varies between tkinter * and tkinter.ttk *

2009-12-18 Thread kurt
Changes by kurt : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue7526> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue7526] tkinter menubutton underline behaviour varies between tkinter * and tkinter.ttk *

2009-12-16 Thread kurt
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

[issue7133] test_ssl failure

2009-10-19 Thread Kurt B. Kaiser
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

[issue6717] Some problem with recursion handling

2009-10-19 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk priority: normal -> high ___ Python tracker <http://bugs.python.org/issue6717> ___ ___ Python-bugs-list mai

[issue6941] Socket error when launching IDLE

2009-10-19 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue6941> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7133] test_ssl failure

2009-10-15 Thread Kurt B. Kaiser
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

[issue7148] socket.py: r75412 broke build

2009-10-15 Thread Kurt B. Kaiser
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> ___ ___

[issue6941] Socket error when launching IDLE

2009-10-15 Thread Kurt B. Kaiser
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

[issue7148] socket.py: r75412 broke build

2009-10-15 Thread Kurt B. Kaiser
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

[issue6539] unittest dir not created during install

2009-07-21 Thread Kurt B. Kaiser
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.

[issue6536] urllib2 howto contains typo

2009-07-21 Thread Kurt McKee
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:

[issue6530] Regression on "python -Wi" crash

2009-07-20 Thread Kurt B. Kaiser
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

[issue5232] Setting font from preference dialog in IDLE on OS X broken

2009-05-20 Thread Kurt B. Kaiser
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

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
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

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
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

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
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

[issue5219] IDLE/Tkinter: edit win stops updating when tooltip is active

2009-05-18 Thread Kurt B. Kaiser
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&#

[issue3003] sys.stdin.fileno() gives attribute error in IDLE

2009-05-17 Thread Kurt B. Kaiser
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()

[issue4685] IDLE will not open (2.6.1 on WinXP pro)

2009-05-03 Thread Kurt B. Kaiser
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

[issue3286] IDLE opens window too low on Windows

2009-05-03 Thread Kurt B. Kaiser
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

[issue5559] IDLE Output Window 's goto fails when path has spaces

2009-05-02 Thread Kurt B. Kaiser
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

[issue5707] IDLE will not load

2009-04-26 Thread Kurt B. Kaiser
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

[issue5559] IDLE Output Window 's goto fails when path has spaces

2009-04-26 Thread Kurt B. Kaiser
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

[issue5559] IDLE Output Window 's goto fails when path has spaces

2009-04-26 Thread Kurt B. Kaiser
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

[issue5764] 2.6.2 Python Manuals CHM file seems broken

2009-04-26 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk priority: -> high ___ Python tracker <http://bugs.python.org/issue5764> ___ ___ Python-bugs-list mailing list Un

[issue5756] idle pydoc et al removed from 3.1 without versioned replacements

2009-04-25 Thread Kurt B. Kaiser
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

[issue1529142] Allowing multiple instances of IDLE with sub-processes

2009-04-25 Thread Kurt B. Kaiser
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

[issue5847] IDLE/Win Installer: drop -n switch for 2.7/3.1; install 3.1 as idle3

2009-04-25 Thread Kurt B. Kaiser
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

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
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

[issue5129] indentation in IDLE 2.6 different from IDLE 2.5, 2.4 or vim

2009-04-25 Thread Kurt B. Kaiser
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

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- components: +IDLE -Build keywords: +26backport ___ Python tracker <http://bugs.python.org/issue5783> ___ ___ Python-bugs-list mailin

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
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

[issue5834] The word "error" used instead of "failure"

2009-04-24 Thread Kurt McKee
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...&

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Kurt B. Kaiser
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

[issue5783] IDLE cannot find windows chm file

2009-04-22 Thread Kurt B. Kaiser
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/

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- assignee: -> kbk nosy: +kbk ___ Python tracker <http://bugs.python.org/issue5783> ___ ___ Python-bugs-list mailing list Un

[issue5756] idle pydoc et al removed from 3.1 without versioned replacements

2009-04-19 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker <http://bugs.python.org/issue5756> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5733] py3_test_grammar.py syntax error

2009-04-11 Thread Kurt B. Kaiser
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

[issue5733] py3_test_grammar.py syntax error

2009-04-09 Thread Kurt B. Kaiser
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__

[issue1757831] Allow opening just an editor window

2009-04-04 Thread Kurt B. Kaiser
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

[issue1529142] Allowing multiple instances of IDLE with sub-processes

2009-04-04 Thread Kurt B. Kaiser
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

[issue4676] python3 closes + home keys

2009-04-03 Thread Kurt B. Kaiser
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 ">

[issue3851] IDLE: Pressing "Home" on Windows places cursor before ">>>" instead of after. Solution offered.

2009-04-03 Thread Kurt B. Kaiser
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

[issue3851] IDLE: Pressing "Home" on Windows places cursor before ">>>" instead of after. Solution offered.

2009-04-03 Thread Kurt B. Kaiser
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

[issue5594] IDLE startup configuration

2009-04-03 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- assignee: -> kbk nosy: +kbk ___ Python tracker <http://bugs.python.org/issue5594> ___ ___ Python-bugs-list mailing list Un

[issue3851] IDLE: Pressing "Home" on Windows places cursor before ">>>" instead of after. Solution offered.

2009-04-03 Thread Kurt B. Kaiser
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

[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2009-04-03 Thread Kurt B. Kaiser
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

[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2009-04-02 Thread Kurt B. Kaiser
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

[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2009-04-02 Thread Kurt B. Kaiser
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

[issue3549] Missing IDLE Preferences on Mac

2009-04-01 Thread Kurt B. Kaiser
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 ___

[issue5428] Pyshell history management error

2009-04-01 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: Apparently this can be closed. -- assignee: -> kbk nosy: +kbk status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue1621111] IDLE crashes on OS X 10.4 when "Preferences" selected

2009-04-01 Thread Kurt B. Kaiser
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

[issue1621111] IDLE crashes on OS X 10.4 when "Preferences" selected

2009-04-01 Thread Kurt B. Kaiser
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   2   3   >