[issue11245] Implementation of IMAP IDLE in imaplib?

2015-02-14 Thread F.
F. added the comment: IMAP polling hurts, just merge imaplib2 into standard library as imaplib. Piers Lauder authored imaplib IMAP4 client, part of python standard library, back in December 1997 based on RFC 2060. In 2003 RFC 2060 was made obsolete by RFC 3501 adding important features and

[issue11245] Implementation of IMAP IDLE in imaplib?

2015-02-18 Thread F.
F. added the comment: Imaplib2 now supports Python 3. Piers and me propose to merge imaplib2 into standard library as imaplib. Excerpt from our conversation: Piers: ...Thanks for bringing it (this thread) to my attention. I entirely agree with your comments. Me: ...I found the criticism of

[issue42209] Incorrect line reported in syntax error

2021-12-15 Thread arian-f
arian-f added the comment: There are still variations of this issue in python 3.10 - the line nr is correct - in script attached it's line 2 (the attached script is otherwise the same): f'{ 1_a }' resulting in: File "test.py", line 1 ( 1_a )

[issue46237] Incorrect line reported in syntax error

2022-01-02 Thread arian-f
New submission from arian-f : parsing this code results in a syntax error with an incorrect line number - it's always 1 f''' { 1_a }''' resulting in: File "", line 1 ( 1_a ) ^ SyntaxError: invalid decimal literal an anal

[issue9768] IDLE / Black frame in active window

2010-09-03 Thread Kristoffer F
New submission from Kristoffer F : Hi I am new to python and have installed python 3.1.2. I have began using IDLE and like it very good. But when an IDLE window is active. There is a "thick" black frame around the white text field. Is this a know issue? And is there some way I c

[issue9768] IDLE / Black frame in active window

2010-09-03 Thread Kristoffer F
Kristoffer F added the comment: Hi I am new to python and have installed python 3.1.2. I have began using IDLE and like it very good. But when an IDLE window is active. There is a "thick" black frame around the white text field. Is this a know issue? And is there some way I c

[issue9768] IDLE / Black frame in active window

2010-09-04 Thread Kristoffer F
Kristoffer F added the comment: Hi I installed python from the python.org installer. I have now taken a screen shot, with two IDLE windows open. So you can se that it is only the active window that get the frame. I see that you have also responded to my posts at comp.lang.python. Would you

[issue45589] webbrowser does not handle opens under Windows WSL properly

2021-10-23 Thread Guido F
New submission from Guido F : The 'webbrowser' module throws warnings and bad RC codes when running under Windows Subsystem for Linux (WSL). This causes libraries that depend on the 'webbrowser' module to mistakenly assume there's been an error opening a URL. An exam

[issue45589] webbrowser does not handle opens under Windows WSL properly

2021-11-02 Thread Guido F
Guido F added the comment: My code patch uses ‘wslview’, which is a binary that is injected into every WSL distro and forwards file open commands to windows. I detect WSL inspecting the kernel version, which includes WSL tagging. On Tue, Nov 2, 2021 at 3:05 PM Steve Dower wrote: > >

[issue45589] webbrowser does not handle opens under Windows WSL properly

2021-11-02 Thread Guido F
Guido F added the comment: Understood, my mistake. I wonder if explorer.exe or any other general purpose open command is guaranteed to be available in all WSL distros. There’s also a consideration to be made on WSL1 vs WSL2 (only v2 ships an actual Linux kernel). For detection, there’re some

[issue37208] Weird exception behaviour in ProcessPoolExecutor

2019-06-28 Thread F. Raab
Change by F. Raab : -- nosy: +raabf ___ Python tracker <https://bugs.python.org/issue37208> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue35702] clock_gettime: Add new identifier CLOCK_UPTIME_RAW for Darwin

2019-01-09 Thread Ricardo F
New submission from Ricardo F : Finally since the release of OSX 10.12 the equivalent from the FreeBSD and OpenBSD "CLOCK_UPTIME" is available on Darwin under the name "CLOCK_UPTIME_RAW": CLOCK_UPTIME FreeBSD [1]: Starts at zero when the kernel boots and increments monoton

[issue18378] locale.getdefaultlocale() fails on Mac OS X with default language set to English

2019-01-10 Thread Ricardo F
Ricardo F added the comment: I still have this issue on MacOS Mojave 10.14 Python 3.7.2 (default, Dec 27 2018, 07:35:06) [Clang 10.0.0 (clang-1000.11.45.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >&

[issue32713] tarfile.itn breaks if n is a negative float

2018-01-29 Thread Joffrey F
New submission from Joffrey F : Originally reported @ github.com/docker/compose/issues/5618 It seems that tarfile.itn() attempts to execute bitwise operations on a float if the n argument is a negative float, raising a TypeError. As pointed out in the original report, this is an issue when

[issue32713] tarfile.itn breaks if n is a negative float

2018-01-29 Thread Joffrey F
Change by Joffrey F : -- keywords: +patch pull_requests: +5267 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32713> ___ ___ Python-

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-19 Thread F. Lamar
F. Lamar added the comment: I a new contributor. This seems like a simple fix. I'd be happy to work on it. I will submit ar PR on or before 10-22-17 -- nosy: +F. Lamar ___ Python tracker <https://bugs.python.org/is

[issue11245] Implementation of IMAP IDLE in imaplib?

2015-06-12 Thread F Malina
F Malina added the comment: I am in for my part and I emailed Piers to come and join us and he surely will when the bug tracker is responsive again. Imaplib2 does have an up to date test suite and compatibility wise imaplib2 can be substituted for imaplib in existing clients with no changes in

[issue11245] Implementation of IMAP IDLE in imaplib?

2015-06-12 Thread F Malina
F Malina added the comment: I just wen’t through my repo looking at relevant commits to double check and I didn’t have to change a line in my user level code when upgrading from python2 to 3. There was only one way to do it. -- ___ Python tracker

[issue11245] Implementation of IMAP IDLE in imaplib?

2015-06-12 Thread F Malina
F Malina added the comment: I don’t have a test for it, neither has stdlib imaplib. We just need to port over the encode fix. Copy over the fixed version of _CRAM_MD5_AUTH. from line 599 in python3.5 imaplib https://github.com/python/cpython/blob/master/Lib/imaplib.py#L599 <https://github.

[issue16198] IDLE - tabbing in a string always brings up file completion window

2015-11-24 Thread Tom F
Tom F added the comment: I've found this to be annoying as well especially in docstrings, hopefully this will help in the meantime. If you SHIFT + Tab it will at least resolve the problem of bringing up files and remains as the usual tab function. It makes me wonder if it is a bug a

[issue1165] Should itertools.count work for arbitrary integers?

2007-09-15 Thread Paul F. Dubois
Changes by Paul F. Dubois: __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1165> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mai

[issue1165] Should itertools.count work for arbitrary integers?

2007-09-15 Thread Paul F. Dubois
Changes by Paul F. Dubois: -- nosy: -esr __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1165> __ ___ Python-bugs-list mailing list Unsubs

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-24 Thread Paul F. Dubois
Paul F. Dubois added the comment: Testing auditor, this change should get this issue assigned to Collin. -- nosy: +dubois __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-24 Thread Paul F. Dubois
Paul F. Dubois added the comment: yet another test __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1002> __ ___ Python-bugs-list mailing list Unsubs

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-24 Thread Paul F. Dubois
Changes by Paul F. Dubois: __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1002> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mai

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-24 Thread Paul F. Dubois
Changes by Paul F. Dubois: __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1002> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mai

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-24 Thread Paul F. Dubois
Paul F. Dubois added the comment: Hoping I have learned to spell, another test. -- assignee: -> collinwinter __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1198] Test of 2to3 component auditor

2007-09-24 Thread Paul F. Dubois
New submission from Paul F. Dubois: This is a test issue, please ignore. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 56123 nosy: collinwinter, dubois severity: minor status: open title: Test of 2to3 component auditor

[issue1198] Test of 2to3 component auditor

2007-09-24 Thread Paul F. Dubois
Changes by Paul F. Dubois: -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1198> __ ___ Python-bugs-list mailing list Uns

[issue37983] macOS: os.lchmod() incorrectly removed by 2.7.16

2019-08-29 Thread Keith F. Kelly
New submission from Keith F. Kelly : Apparently the fix for https://bugs.python.org/issue34652 was incorrect, or got incorrectly backported to, the 2.7 tree, because as of 2.7.16, the os.lchmod() built-in API is unexpectedly missing on MacOS, which is breaking our existing code

[issue35487] setup()'s package_data not following directory symlink

2018-12-13 Thread F. Eugene Aumson
New submission from F. Eugene Aumson : I have a package using setup.py. I want the package to include some data files, which are located in my source directory. Building my package in my 3.7.0 environment includes the data files as expected. Building the same exact package in my 3.7.1

[issue35487] setup()'s package_data not following directory symlink

2018-12-13 Thread F. Eugene Aumson
F. Eugene Aumson added the comment: The two environments in question (a 3.7.1 one, and a 3.7.0 one) differ in other ways. I have done an apples-to-apples comparison of those two versions, in the same local environment, and this issue does not exist. Sorry for the noise. -- stage

[issue5830] heapq item comparison problematic with sched's events

2009-04-24 Thread Kay F. Jahnke
New submission from Kay F. Jahnke : scheduler uses heapq to schedule it's events. Heapq uses plain >/< comparisons on the events. Now that comparisons of incomparable data are no longer valid, the comparison fails if two events are scheduled for the same time with the same priority

[issue13044] pdb throws AttributeError at end of debugging session

2015-05-01 Thread Charles F. Bearden
Charles F. Bearden added the comment: I can reproduce this bug on Ubuntu 14.04.2 LTS with Python 2.7.6 using akl's debug.py. -- nosy: +cfbearden ___ Python tracker <http://bugs.python.org/is

[issue13044] pdb throws AttributeError at end of debugging session

2015-05-01 Thread Charles F. Bearden
Charles F. Bearden added the comment: One further observation: the exception is thrown only if a breakpoint (apart from the call to pdb.set_trace) is set. If no breakpoint is set, the exception is not raised. -- ___ Python tracker <h