[ python-Bugs-1593384 ] No IDLE in Windows
Bugs item #1593384, was opened at 2006-11-09 15:49 Message generated for change (Comment added) made by a_v_i You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demos and Tools Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: A_V_I (a_v_i) Assigned to: Nobody/Anonymous (nobody) Summary: No IDLE in Windows Initial Comment: I have installed Python 2.5 on WinXP using python-25.msi with all features included and all default direcories , etc. When I tried to use IDLE I had got the following results: - shortcut in Start -> ... does not do anything - no IDLE in Python25\Tools How can I get IDLE for usage? -- >Comment By: A_V_I (a_v_i) Date: 2006-11-13 14:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-09 22:35 Message: Logged In: YES user_id=21627 Can you please report the properties of the IDLE shortcut? (right-button on the start menu item, properties) -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1593384 ] No IDLE in Windows
Bugs item #1593384, was opened at 2006-11-09 15:49 Message generated for change (Comment added) made by a_v_i You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demos and Tools Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: A_V_I (a_v_i) Assigned to: Nobody/Anonymous (nobody) Summary: No IDLE in Windows Initial Comment: I have installed Python 2.5 on WinXP using python-25.msi with all features included and all default direcories , etc. When I tried to use IDLE I had got the following results: - shortcut in Start -> ... does not do anything - no IDLE in Python25\Tools How can I get IDLE for usage? -- >Comment By: A_V_I (a_v_i) Date: 2006-11-13 14:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 14:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-09 22:35 Message: Logged In: YES user_id=21627 Can you please report the properties of the IDLE shortcut? (right-button on the start menu item, properties) -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595594 ] parser module bug for nested try...except statements
Bugs item #1595594, was opened at 2006-11-13 14:00 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595594&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Library Group: Python 2.4 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Kay Schluehr (schluehrk) Assigned to: Nobody/Anonymous (nobody) Summary: parser module bug for nested try...except statements Initial Comment: The following block of source code causes an exception when tried to parse, listify and restoring an ast object: source = """ try: try: TRY_BLOCK except EXC1: EXC_BLOCK1 except EXC2: EXC_BLOCK1 except EXC3: FIN_BLOCK """ import parser stlist = parser.suite(source).tolist() # o.k. parser.sequence2st(stlist) Traceback (most recent call last): File "", line 1, in ? ParserError: Expected node type 297, got -31392. The node value -31392 is at random and not reproducable. The problem does not occur when only one except branch in the inner try is used: source = """ try: try: TRY_BLOCK except EXC1: EXC_BLOCK1 except EXC3: FIN_BLOCK """ import parser stlist = parser.suite(source).tolist() # o.k. parser.sequence2st(stlist) # o.k. It also doesn't occur for an outer finally-clause instead of an except clause. The problem is reproducable for Python 2.5 -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595594&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595594 ] parser module bug for nested try...except statements
Bugs item #1595594, was opened at 2006-11-13 13:00 Message generated for change (Comment added) made by gbrandl You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595594&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Library Group: Python 2.4 >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Kay Schluehr (schluehrk) >Assigned to: Georg Brandl (gbrandl) Summary: parser module bug for nested try...except statements Initial Comment: The following block of source code causes an exception when tried to parse, listify and restoring an ast object: source = """ try: try: TRY_BLOCK except EXC1: EXC_BLOCK1 except EXC2: EXC_BLOCK1 except EXC3: FIN_BLOCK """ import parser stlist = parser.suite(source).tolist() # o.k. parser.sequence2st(stlist) Traceback (most recent call last): File "", line 1, in ? ParserError: Expected node type 297, got -31392. The node value -31392 is at random and not reproducable. The problem does not occur when only one except branch in the inner try is used: source = """ try: try: TRY_BLOCK except EXC1: EXC_BLOCK1 except EXC3: FIN_BLOCK """ import parser stlist = parser.suite(source).tolist() # o.k. parser.sequence2st(stlist) # o.k. It also doesn't occur for an outer finally-clause instead of an except clause. The problem is reproducable for Python 2.5 -- >Comment By: Georg Brandl (gbrandl) Date: 2006-11-13 13:26 Message: Logged In: YES user_id=849994 I can reproduce this with the 2.5.0 release, but not with the latest 2.5 SVN or the 2.6 SVN. Closing as outdated. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595594&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-944396 ] urllib2 doesn't handle username/password in url
Bugs item #944396, was opened at 2004-04-29 16:34 Message generated for change (Comment added) made by orsenthil You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=944396&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Resolution: Duplicate Priority: 5 Private: No Submitted By: Chris Withers (fresh) Assigned to: Nobody/Anonymous (nobody) Summary: urllib2 doesn't handle username/password in url Initial Comment: >>> urllib2.urlopen('http://username:[EMAIL PROTECTED]') Traceback (most recent call last): File "", line 1, in ? File "C:\PYTHON23\lib\urllib2.py", line 129, in urlopen return _opener.open(url, data) File "C:\PYTHON23\lib\urllib2.py", line 326, in open '_open', req) File "C:\PYTHON23\lib\urllib2.py", line 306, in _call_chain result = func(*args) File "C:\PYTHON23\lib\urllib2.py", line 901, in http_open return self.do_open(httplib.HTTP, req) File "C:\PYTHON23\lib\urllib2.py", line 860, in do_open h = http_class(host) # will parse host:port File "C:\Python23\lib\httplib.py", line 1009, in __init__ self._setup(self._connection_class(host, port, strict)) File "C:\Python23\lib\httplib.py", line 507, in __init__ self._set_hostport(host, port) File "C:\Python23\lib\httplib.py", line 518, in _set_hostport raise InvalidURL("nonnumeric port: '%s'" % host[i+1:]) httplib.InvalidURL: nonnumeric port: '[EMAIL PROTECTED]' cheers, Chris -- Comment By: O.R.Senthil Kumaran (orsenthil) Date: 2006-11-13 19:30 Message: Logged In: YES user_id=942711 It does handle: proxy_user = 'user_name' proxy_password ='password' # Setup the Proxy with urllib2 proxy_url = 'http://' + proxy_user + ':' + proxy_password + '@' + PROXY_IP proxy_support = urllib2.ProxyHandler({"http":proxy_url}) opener = urllib2.build_opener(proxy_support,urllib2.HTTPHandler) urllib2.install_opener(opener) Worked properly for me so long. -- Comment By: Georg Brandl (gbrandl) Date: 2006-02-21 02:30 Message: Logged In: YES user_id=849994 This is also reported by #979407. -- Comment By: Sjoerd Mullender (sjoerd) Date: 2004-05-06 02:52 Message: Logged In: YES user_id=43607 I don't know (nor care) about RFC 1738, but it's successor RFC 2396 *does* mention @: as a possible "server". See section 3.2.2. I admit, it also says that it is not recommended, but it does specifically allow username + password in the URI. -- Comment By: Chris Withers (fresh) Date: 2004-05-06 02:31 Message: Logged In: YES user_id=24723 However, given that the original urllib supported this, it is suprising that urllib2 doesn't. -- Comment By: Andrew Langmead (langmead) Date: 2004-05-06 02:04 Message: Logged In: YES user_id=119306 Although allowing a username and password in the URL is a common client extension, it is not part of the standard -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=944396&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595742 ] SocketServer allow_reuse_address checked in constructor
Bugs item #1595742, was opened at 2006-11-13 11:54 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595742&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Library Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Peter Parente (parente) Assigned to: Nobody/Anonymous (nobody) Summary: SocketServer allow_reuse_address checked in constructor Initial Comment: Python 2.4.3 (#1, Oct 1 2006, 18:00:19) [GCC 4.1.1 20060928 (Red Hat 4.1.1-28)] on linux2 The documentation in the SocketServer class indicates that the allow_reuse_address flag may be set on a SocketServer subclass *or instance.* However, the flag is read in a call to the server_bind() from the constructor of the server object. Therefore, setting the flag on a created instance has no effect. This is problematic when trying to set the flag on SimpleXMLRPCServer instances, for instance, which are often not subclassed. This flag should probably become one of the keyword arguments in the constructor of a SocketServer object. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595742&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1593384 ] No IDLE in Windows
Bugs item #1593384, was opened at 2006-11-09 13:49 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demos and Tools Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: A_V_I (a_v_i) Assigned to: Nobody/Anonymous (nobody) Summary: No IDLE in Windows Initial Comment: I have installed Python 2.5 on WinXP using python-25.msi with all features included and all default direcories , etc. When I tried to use IDLE I had got the following results: - shortcut in Start -> ... does not do anything - no IDLE in Python25\Tools How can I get IDLE for usage? -- >Comment By: Martin v. Löwis (loewis) Date: 2006-11-13 19:16 Message: Logged In: YES user_id=21627 I see. Can you please run C:\Python25\python.exe C:\Python25\Lib\idlelib\idle.pyw in a cmd.exe window and report what happens? -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 12:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 12:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-09 20:35 Message: Logged In: YES user_id=21627 Can you please report the properties of the IDLE shortcut? (right-button on the start menu item, properties) -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595822 ] read() in windows stops on chr(26)
Bugs item #1595822, was opened at 2006-11-13 12:17 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Windows Group: Python 2.5 Status: Open Resolution: None Priority: 5 Private: No Submitted By: reson5 (reson5) Assigned to: Nobody/Anonymous (nobody) Summary: read() in windows stops on chr(26) Initial Comment: >From standard distribution (installation through .exe file): open() function in Windows (I have win2k and xp) opens files in text mode and stops on chr(26). I cannot parse a binary file (!). On Linux all works fine. Regards, Reson5 -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595822 ] read() in windows stops on chr(26)
Bugs item #1595822, was opened at 2006-11-13 12:17 Message generated for change (Comment added) made by reson5 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Windows Group: Python 2.5 Status: Open Resolution: None Priority: 5 Private: No Submitted By: reson5 (reson5) Assigned to: Nobody/Anonymous (nobody) Summary: read() in windows stops on chr(26) Initial Comment: >From standard distribution (installation through .exe file): open() function in Windows (I have win2k and xp) opens files in text mode and stops on chr(26). I cannot parse a binary file (!). On Linux all works fine. Regards, Reson5 -- >Comment By: reson5 (reson5) Date: 2006-11-13 12:20 Message: Logged In: YES user_id=1355850 To clarify, The behavior is not uniform on Linux it opens in binary and on windows in text (!) Regards, Reson5 -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1595822 ] read() in windows stops on chr(26)
Bugs item #1595822, was opened at 2006-11-13 19:17 Message generated for change (Comment added) made by gbrandl You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Windows Group: Python 2.5 >Status: Pending >Resolution: Invalid Priority: 5 Private: No Submitted By: reson5 (reson5) Assigned to: Nobody/Anonymous (nobody) Summary: read() in windows stops on chr(26) Initial Comment: >From standard distribution (installation through .exe file): open() function in Windows (I have win2k and xp) opens files in text mode and stops on chr(26). I cannot parse a binary file (!). On Linux all works fine. Regards, Reson5 -- >Comment By: Georg Brandl (gbrandl) Date: 2006-11-13 19:29 Message: Logged In: YES user_id=849994 chr(26) or Ctrl+Z is the end-of-file character in Windows, for text-mode files. If you open the file in binary mode, e.g. with open("filename", "rb"), there should be no problems with reading the chr(26). -- Comment By: reson5 (reson5) Date: 2006-11-13 19:20 Message: Logged In: YES user_id=1355850 To clarify, The behavior is not uniform on Linux it opens in binary and on windows in text (!) Regards, Reson5 -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1595822&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1593384 ] No IDLE in Windows
Bugs item #1593384, was opened at 2006-11-09 15:49 Message generated for change (Comment added) made by a_v_i You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demos and Tools Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: A_V_I (a_v_i) Assigned to: Nobody/Anonymous (nobody) Summary: No IDLE in Windows Initial Comment: I have installed Python 2.5 on WinXP using python-25.msi with all features included and all default direcories , etc. When I tried to use IDLE I had got the following results: - shortcut in Start -> ... does not do anything - no IDLE in Python25\Tools How can I get IDLE for usage? -- >Comment By: A_V_I (a_v_i) Date: 2006-11-14 08:59 Message: Logged In: YES user_id=1641322 Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\Administrator>C:\Python25\python.exe C:\Python25\Lib\i dlelib\idle.pyw Traceback (most recent call last): File "C:\Python25\Lib\idlelib\idle.pyw", line 21, in idlelib.PyShell.main() File "C:\Python25\lib\idlelib\PyShell.py", line 1388, in main root = Tk(className="Idle") File "C:\Python25\lib\lib-tk\Tkinter.py", line 1636, in __init__ self.tk = _tkinter.create(screenName, baseName, className, interactive, want objects, useTk, sync, use) _tkinter.TclError: Can't find a usable init.tcl in the following directories: {C:\IBMTOOLS\Python22\tcl\tcl8.4} {C:\IBMTOOLS\Python22\tcl\tcl8.4} C:/IBMTO OLS/Python22/tcl/tcl8.4 C:/Python25/lib/tcl8.4 C:/lib/tcl8.4 C:/library This probably means that Tcl wasn't installed properly. -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-13 21:16 Message: Logged In: YES user_id=21627 I see. Can you please run C:\Python25\python.exe C:\Python25\Lib\idlelib\idle.pyw in a cmd.exe window and report what happens? -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 14:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 14:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-09 22:35 Message: Logged In: YES user_id=21627 Can you please report the properties of the IDLE shortcut? (right-button on the start menu item, properties) -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1593384 ] No IDLE in Windows
Bugs item #1593384, was opened at 2006-11-09 13:49 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demos and Tools Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: A_V_I (a_v_i) Assigned to: Nobody/Anonymous (nobody) Summary: No IDLE in Windows Initial Comment: I have installed Python 2.5 on WinXP using python-25.msi with all features included and all default direcories , etc. When I tried to use IDLE I had got the following results: - shortcut in Start -> ... does not do anything - no IDLE in Python25\Tools How can I get IDLE for usage? -- >Comment By: Martin v. Löwis (loewis) Date: 2006-11-14 07:16 Message: Logged In: YES user_id=21627 Can you please check whether you have TCL_LIBRARY or TK_LIBRARY set in your environment, and, if so, try removing them? -- Comment By: A_V_I (a_v_i) Date: 2006-11-14 06:59 Message: Logged In: YES user_id=1641322 Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\Administrator>C:\Python25\python.exe C:\Python25\Lib\i dlelib\idle.pyw Traceback (most recent call last): File "C:\Python25\Lib\idlelib\idle.pyw", line 21, in idlelib.PyShell.main() File "C:\Python25\lib\idlelib\PyShell.py", line 1388, in main root = Tk(className="Idle") File "C:\Python25\lib\lib-tk\Tkinter.py", line 1636, in __init__ self.tk = _tkinter.create(screenName, baseName, className, interactive, want objects, useTk, sync, use) _tkinter.TclError: Can't find a usable init.tcl in the following directories: {C:\IBMTOOLS\Python22\tcl\tcl8.4} {C:\IBMTOOLS\Python22\tcl\tcl8.4} C:/IBMTO OLS/Python22/tcl/tcl8.4 C:/Python25/lib/tcl8.4 C:/lib/tcl8.4 C:/library This probably means that Tcl wasn't installed properly. -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-13 19:16 Message: Logged In: YES user_id=21627 I see. Can you please run C:\Python25\python.exe C:\Python25\Lib\idlelib\idle.pyw in a cmd.exe window and report what happens? -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 12:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: A_V_I (a_v_i) Date: 2006-11-13 12:33 Message: Logged In: YES user_id=1641322 Properties: IDLE (Python GUI) Target Python 2.5 Start in C:\Python25 Shortcut key None RunNormal window -- Comment By: Martin v. Löwis (loewis) Date: 2006-11-09 20:35 Message: Logged In: YES user_id=21627 Can you please report the properties of the IDLE shortcut? (right-button on the start menu item, properties) -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593384&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com