[issue40404] Python quit unexpectedly

2020-04-26 Thread Joseph
New submission from Joseph : Process: Python [91080] Path: /usr/local/Cellar/python/3.7.7/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python Identifier:Python Version: 3.7.7 (3.7.7) Code Type

[issue40404] Python quit unexpectedly

2020-04-26 Thread Joseph
Joseph added the comment: Sorry I should've added more context. I recently re-installed python on my computer and started getting these errors. It's hard to pinpoint when I get the error exactly, but I find it happens when I shutdown a Jupyter notebook. I'm wondering if this

[issue8820] IDLE not launching correctly

2012-04-15 Thread Joseph
Joseph added the comment: Seems to work fine for me, operating system still Windows 64 bit, Python 2.7.2, IDLE 2.7.2 On Sat, Apr 14, 2012 at 6:08 PM, Roger Serwy wrote: > > Roger Serwy added the comment: > > Joseph, Jeff, > > Is this still a valid issue with the late

[issue34584] subprocess

2018-09-05 Thread Joseph
Change by Joseph : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue34584> ___ ___ Python-bugs-list mailin

[issue34584] subprocess

2018-09-05 Thread Joseph
Joseph added the comment: Problem saved... turns out I saved a math.py file in my python location and thats what cause the crash. when i remove the math.py file or change its name, python got back to work. thanks -- ___ Python tracker <ht

[issue34584] subprocess

2018-09-05 Thread Joseph
New submission from Joseph : Every time IDLE is opened this message "IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connection" shows up. When I open IDLE through .py programs the app cr

[issue8820] IDLE not launching correctly

2010-05-25 Thread Joseph
New submission from Joseph : I am on Windows 7 64 bit. Issue occurs trying to open IDLE or Module Docs. My problem is very similar to this one: http://bugs.python.org/issue8247 Also, it is almost identical to this: http://bugs.python.org/issue7265 Followed the directions in issue 7265, here is

[issue8820] IDLE not launching correctly

2010-06-19 Thread Joseph
Joseph added the comment: I'm using python version 2.6.5. -- ___ Python tracker <http://bugs.python.org/issue8820> ___ ___ Python-bugs-list mailing list

[issue22934] Python/importlib.h is now generated by Programs/_freeze_importlib.c, change comment

2014-11-24 Thread joseph
New submission from joseph: Since the changeset 91853:88a532a31eb3 _freeze_importlib.c resides in the Programs dir. The header comment of Python/importlib.h should be changed to reflect this. -- components: Build files: freeze_importlib_comment.patch keywords: patch messages: 231617

[issue45665] Problems caused by isinstance(list[int], type) returning True

2021-12-27 Thread Joseph Perez
Joseph Perez added the comment: There is also https://bugs.python.org/issue44293 about inspect.isclass -- nosy: +joperez ___ Python tracker <https://bugs.python.org/issue45

[issue1320] PCBuild8 Solution Support Changes

2007-10-23 Thread Joseph Armbruster
New submission from Joseph Armbruster: The following observations were made of the PCBuild8 solution: 1 pyproject.vsprops was missing usermacros for tcltk / msi 2 no vcproj for ssl module like the PCBuild solution has 3 _msi project did not havea valid includedir 4 _tkinter did not have a

[issue1442] pythonstartup addition of minor error checking

2007-11-13 Thread Joseph Armbruster
New submission from Joseph Armbruster: Trunk revision: 58963 Description: No warning or error is reported it a file pointed to by PYTHONSTARTUP is not readable. Request: To display a warning so that the user may be notified. Note: Errors that may occur in PyRun_SimpleFileExFlags are being

[issue1456] unexpected iterator behavior with removal

2007-11-17 Thread Joseph Armbruster
New submission from Joseph Armbruster: Trunk Revision: 58651 Example of potential issue: >>> a = [1,2,3,4,5] >>> >>> for x in a: ... a.remove(x) ... >>> >>> a [2, 4] If this is the expected behavior of iteration in this case, my apologies. If

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2007-11-18 Thread Joseph Armbruster
Joseph Armbruster added the comment: I applied the change to: Python 2.6a0 (trunk:58651M, Nov 18 2007, 08:46:54) [MSC v.1400 32 bit (Intel)] on win32 and test_popen passes appeared to pass. -- nosy: +JosephArmbruster _ Tracker <[EMAIL PROTEC

[issue1489051] keyword and topic help broken in Pythonwin IDE

2007-11-18 Thread Joseph Armbruster
Joseph Armbruster added the comment: Is there any reason this is not part of the windows installer? So, that if you select to install the full Documentation feature, this as a checkbox-type option to 'build html documentation'? Thoughts? -- nosy: +Joseph

[issue1458] installer crashes on attempted cancellation

2007-11-18 Thread Joseph Armbruster
New submission from Joseph Armbruster: Operating System: OS Name: Microsoft Windows XP Professional OS Version:5.1.2600 Service Pack 2 Build 2600 Using the latest Python 2.5.1.msi from: http://www.python.org/ftp/python/2.5.1/python-2.5.1.msi Perform the

[issue1475] test_popen fails when the directory contains a space

2007-11-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: I believe the issue lies with the cmd command line parameters and insufficient quoting: Currently, if this string is passed into CreateProcess as args, the call will fail: C:\WINDOWS\System32\cmd.exe /c "C:\Documents and Settings\joe\Desktop\Develo

[issue1476] missing debug configuration for make_versioninfo.vcproj

2007-11-20 Thread Joseph Armbruster
New submission from Joseph Armbruster: Revision: 59073 make_versioninfo.vcproj is missing the debug configuration. As a result, if you try to build python in debug, you will receive an error during compile in python_nt.rc, due to this block: #define MS_WINDOWS #include "modsupport.h"

[issue1476] missing debug configuration for make_versioninfo.vcproj

2007-11-20 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- nosy: +tiran __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1476> __ ___ Python-bugs-list mailing list Unsubs

[issue1476] missing debug configuration for make_versioninfo.vcproj

2007-11-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Whoops, looks like I missed the solution, which is also needed for the patch. Here's the correct version. Do the following to test: - Load up the PCBuild9 solution - set python as the "Start Up" project, - select Debug configuration - pre

[issue1475] test_popen fails when the directory contains a space

2007-11-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Applying quotations around args within the shell case appears to take care of it, any thoughts? Added file: http://bugs.python.org/file8788/subprocesspatch.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.p

[issue1478] pythoncore.vcproj fails to generate buildinfo (when spaces in path)

2007-11-20 Thread Joseph Armbruster
New submission from Joseph Armbruster: Executable path should be quoted, in case build environment is located in a path containing spaces. I also made the Debug / Release versions similar in style. -- components: Windows files: pythoncore.patch messages: 57718 nosy: JosephArmbruster

[issue1478] pythoncore.vcproj fails to generate buildinfo (when spaces in path)

2007-11-20 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- nosy: +tiran __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1478> __ ___ Python-bugs-list mailing list Unsubs

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-22 Thread Joseph Armbruster
New submission from Joseph Armbruster: When you attempt to build the _ssl project in release or debug you can possibly encounter errors in the following scenarios: 1) having spaces in the build path 2) if you launch the build in debug, it attempts to run build_ssl.py with the python.exe found

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-23 Thread Joseph Armbruster
Joseph Armbruster added the comment: Looks like the libpaths were pointing to out32 instead of out32.dll. Although that may have been due to my switch from nt.mak to ntdll.mak. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-23 Thread Joseph Armbruster
Joseph Armbruster added the comment: Whoops. This may have been an error on my part. nt.mak I think bombed for me except it was probably due to some of my tinkering. My apologies. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1508] Removal of stale code in _csv.c / pyexpat.c

2007-11-27 Thread Joseph Armbruster
New submission from Joseph Armbruster: I found two code blocks that look as if they can be safely removed: >From _csv.c: /* begin 2.2 compatibility macros */ #ifndef PyDoc_STRVAR /* Define macros for inline documentation. */ #define PyDoc_VAR(name) static char name[] #define PyDoc_STRVAR(n

[issue1512] Removal of stale code in pyconfig.h

2007-11-28 Thread Joseph Armbruster
New submission from Joseph Armbruster: Question: Is there any harm in removing this block from pyconfig.h? #ifndef PY_LONG_LONG # define PY_LONG_LONG __int64 # define PY_LLONG_MAX _I64_MAX # define PY_LLONG_MIN _I64_MIN # define PY_ULLONG_MAX _UI64_MAX #endif

[issue1513] object.c do_compare comparison ordering error

2007-11-28 Thread Joseph Armbruster
New submission from Joseph Armbruster: URL: http://svn.python.org/projects/python/branches/py3k Rev: 59215 Session illustrating issue: >>> a = None [40667 refs] >>> cmp(a,None) Traceback (most recent call last): File "", line 1, in TypeError: unorderable

[issue1513] object.c do_compare comparison ordering error

2007-11-28 Thread Joseph Armbruster
Joseph Armbruster added the comment: I had looked at the behavior in 2.5 and did not know if this would still be the case: >>> cmp(None,'a') -1 >>> cmp('a',None) 1 >>> cmp(None,None) 0 __ Tracker <[E

[issue1520] 'without make' documentation build anomaly

2007-11-29 Thread Joseph Armbruster
New submission from Joseph Armbruster: When I run the following from a windows command line, the resulting html can not be browsed stand-alone: python tools/sphinx-build.py -bhtml . build/htmlwin It looks like the paths are getting hosed up; for example: htmlcygwin/c-api/index.html contains

[issue9593] utf8 codec readlines error after "\x85 "

2010-08-13 Thread Joseph Copenhaver
New submission from Joseph Copenhaver : The IO readlines() facility incorrectly processes utf8 files for some unknown reason. Specifically, the call generates too many entries in the lines array result after a character sequence "\x85 blah" which gets cut as ("\x85 ","

[issue9593] utf8 codec readlines error after "\x85 "

2010-08-13 Thread Joseph Copenhaver
Joseph Copenhaver added the comment: I now recognize the issue was in regard to format problems and not python, but the area where this code will be used requires the use of the codecs module. Is there any way to get the efficiency of codecs I/O readlines() chunking behavior and specify a

[issue9593] utf8 codec readlines error after "\x85 "

2010-08-13 Thread Joseph Copenhaver
Joseph Copenhaver added the comment: It is better, thanks. -- ___ Python tracker <http://bugs.python.org/issue9593> ___ ___ Python-bugs-list mailing list Unsub

[issue9816] random.jumpahead and PRNG sequence independence

2010-09-10 Thread Joseph Schaeffer
New submission from Joseph Schaeffer : Reading the Python 2.6 docs, it appeared that using random.jumpahead would allow the initialization of several generators with the same seed but having much different internal states. While the resulting PRNG appear to have different internal states, the

[issue9816] random.jumpahead and PRNG sequence independence

2010-09-10 Thread Joseph Schaeffer
Joseph Schaeffer added the comment: Thanks for looking into it! I'm glad that issue will be fixed, as at least one website was actually recommending using .jumpahead(i) for i in 1..100 for independent seed. I suspect in my use case I'll want to continue my previous methods; I

[issue923697] SAX2 'property_encoding' feature not supported

2010-09-17 Thread Joseph Walton
Joseph Walton added the comment: The behaviour is unchanged in Python 3.1 and the sample program still fails. -- versions: +Python 3.1 ___ Python tracker <http://bugs.python.org/issue923

[issue10888] os.stat(filepath).st_mode gives wrong 'executable permission' result

2011-04-18 Thread Sijin Joseph
Sijin Joseph added the comment: >From reading http://support.microsoft.com/kb/899147 it does look like the .dll >extension needs to have the "Read & Execute" permission in order to have code >from the .dll be executed. It's odd that there isn't documentat

[issue10616] Change PyObject_AsCharBuffer() error message

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: Looking at object.h the buffer interface is defined as /* buffer interface */ typedef struct bufferinfo { void *buf; PyObject *obj;/* owned reference */ Py_ssize_t len; Py_ssize_t itemsize; /* This is Py_ssize_t so it can be

[issue11901] Docs for sys.hexversion should give the algorithm

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: Patch attached. -- keywords: +patch nosy: +sijinjoseph Added file: http://bugs.python.org/file21774/11901.patch ___ Python tracker <http://bugs.python.org/issue11

[issue11901] Docs for sys.hexversion should give the algorithm

2011-04-25 Thread Sijin Joseph
Changes by Sijin Joseph : Removed file: http://bugs.python.org/file21774/11901.patch ___ Python tracker <http://bugs.python.org/issue11901> ___ ___ Python-bugs-list mailin

[issue11901] Docs for sys.hexversion should give the algorithm

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: Fixed minor typo. -- Added file: http://bugs.python.org/file21775/11901.patch ___ Python tracker <http://bugs.python.org/issue11

[issue8808] imaplib should support SSL contexts

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: Is anyone working on this? -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue8808> ___ ___ Python-bugs-list m

[issue9390] Error in sys.excepthook on windows when redirecting output of the script

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: I was not able to reproduce this on Python 2.7 x64 or Python 3.2 x64 on Win 7 SP1. I am curious what the output is if you just run test.py, do you still get an error? -- nosy: +sijinjoseph ___ Python tracker <h

[issue9035] os.path.ismount on windows doesn't support windows mount points

2011-04-25 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue9035> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11893] Obsolete SSLFakeFile in smtplib?

2011-04-25 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue11893> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9035] os.path.ismount on windows doesn't support windows mount points

2011-04-25 Thread Sijin Joseph
Sijin Joseph added the comment: I'd like to add the win_ismount function mentioned by Tim. Is anyone else working on this presently? -- ___ Python tracker <http://bugs.python.org/i

[issue11926] help("keywords") returns incomplete list of keywords

2011-04-26 Thread Sijin Joseph
Sijin Joseph added the comment: Should True, False and None be keywords? Technically True and False are objects of type bool, in fact the only objects of that type allowed. And None is a specially designated object as well. P.S: Can anyone point me to where the help function is defined in

[issue11926] help("keywords") returns incomplete list of keywords

2011-04-26 Thread Sijin Joseph
Sijin Joseph added the comment: @Ezio - help(True), help(False) and help(None) all return the correct documentation for me using latest trunk. I think the quotes around True, False and None might be throwing things off in your case. -- ___ Python

[issue9390] Error in sys.excepthook on windows when redirecting output of the script

2011-04-26 Thread Sijin Joseph
Sijin Joseph added the comment: @Amaury - That sounds exactly like the issue described. To summarize the error is caused because in some versions of windows there is a bug that causes the handles to stdin/stdout to not be inherited correctly for apps run from the console "via

[issue11927] SMTP_SSL doesn't use port 465 by default

2011-04-27 Thread Sijin Joseph
Sijin Joseph added the comment: Should we add a unit test for this as well? -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue11927> ___ ___

[issue8808] imaplib should support SSL contexts

2011-04-27 Thread Sijin Joseph
Sijin Joseph added the comment: I am attaching a patch for the default branch that adds a ssl_context parameter to IMAP4_SSL. Also added a couple of tests to test_imaplib to test the existing ctor with certfile and file and also the new one that accepts an SSLContext. Currently if the

[issue11620] winsound.PlaySound() with SND_MEMORY should accept bytes instead of strings

2011-04-28 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue11620> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8808] imaplib should support SSL contexts

2011-05-02 Thread Sijin Joseph
Sijin Joseph added the comment: Thanks Antoine. I've attached an updated patch. >> - the keyfile / certfile pair and the context parameter should be mutually exclusive (see e.g. the POP3_SSL constructor in Lib/poplib.py) [Sijin] - Yes, Thanks, I don't know why I didn&#

[issue12018] No tests for ntpath.samefile, ntpath.sameopenfile

2011-05-11 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue12018> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12034] check_GetFinalPathNameByHandle() suboptimal

2011-05-11 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue12034> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11882] test_imaplib failed on x86 ubuntu

2011-05-11 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue11882> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-11 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: +sijinjoseph ___ Python tracker <http://bugs.python.org/issue12045> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12018] No tests for ntpath.samefile, ntpath.sameopenfile

2011-05-16 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: -sijinjoseph ___ Python tracker <http://bugs.python.org/issue12018> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-16 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: -sijinjoseph ___ Python tracker <http://bugs.python.org/issue12045> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11882] test_imaplib failed on x86 ubuntu

2011-05-16 Thread Sijin Joseph
Changes by Sijin Joseph : -- nosy: -sijinjoseph ___ Python tracker <http://bugs.python.org/issue11882> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12034] check_GetFinalPathNameByHandle() suboptimal

2011-05-16 Thread Sijin Joseph
Sijin Joseph added the comment: Is this related to some other issue? The fix seems trivial, however I am curious as to how you stumbled upon this? Is there more to this issue than just performance? -- ___ Python tracker <http://bugs.python.

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-16 Thread Sijin Joseph
Sijin Joseph added the comment: Attaching patch. Removed the second call to os.popen and used the dump variable that was read earlier as the argument to re.search. -- keywords: +patch nosy: +sijinjoseph Added file: http://bugs.python.org/file22010/12045.patch

[issue858809] Use directories from configure rather than hardcoded

2008-09-25 Thread Joseph Rothrock
Joseph Rothrock <[EMAIL PROTECTED]> added the comment: Hi, This problem still exists in 2.5.2. Setting the libdir argument doesn't correctly set LIBDIR in the Makefile. [EMAIL PROTECTED] Python-2.5.2]$ ./configure --prefix=/home/y --libdir=/home/y/lib64 ... [EMAIL PROTECTED] P

[issue7806] httplib.HTTPConnection.getresponse closes socket which destroys the response

2010-02-01 Thread Sijin Joseph
Sijin Joseph added the comment: Looking at the code in httplib it seems that response.will_close is set under the following circumstances, 1. HTTP version is 0.9 2. HTTP response header connection is set to close 3. Non-chunked content with a length of zero This suggests that the underlying

[issue1520] 'without make' documentation build anomaly

2007-12-02 Thread Joseph Armbruster
Joseph Armbruster added the comment: Tim, Post up a patch of what you have up to now and I will look at it today. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1520] 'without make' documentation build anomaly

2007-12-02 Thread Joseph Armbruster
Joseph Armbruster added the comment: Tim, Appears you are on your way to a fix. If you need it tested on an alternate windows machine, post up and i'll run through it. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1520] 'without make' documentation build anomaly

2007-12-03 Thread Joseph Armbruster
Joseph Armbruster added the comment: The good news: At a glance, the following look good: - building target html in cmd - building target htmlhelp then generating chm - building target html in cygwin - building target htmlhelp then generating chm The bad news [should a different bug be created

[issue1520] 'without make' documentation build anomaly

2007-12-03 Thread Joseph Armbruster
Joseph Armbruster added the comment: Typo in my last comment: - building target html in cmd - building target htmlhelp then generating chm - building target html in cygwin - building target htmlhelp in cygwin then generating chm __ Tracker <[EMAIL PROTEC

[issue1593] spacing of the builtin_format function is inconsistent

2007-12-11 Thread Joseph Armbruster
New submission from Joseph Armbruster: URL: http://svn.python.org/projects/python/branches/py3k Revision: 59467 The spacing of the builtin_format function did not appear to be consistent with the rest of the .c file. See attached patch -- components: Interpreter Core files

[issue1601] IDLE not working correctly on Windows (Py30a2/IDLE30a1)

2007-12-12 Thread Joseph Armbruster
Joseph Armbruster added the comment: Tiran, agreed. You can reproduce this issue quickly outside of IDLE with this snippet: from Tkinter import * import tkMessageBox class App(Frame): def __init__(self, master): Frame.__init__(self,master) self.master.title("Wierd

[issue1628] test_distutils unit test is failing rev:59499

2007-12-14 Thread Joseph Armbruster
New submission from Joseph Armbruster: Error detailed below.. I reverted the changes to sysconfig.py from rev 59488 and the error goes away. I believe the suspect line is: # head python_build = os.path.isfile(os.path.join(project_base, "Mo

[issue1639] Low ascii 12 characters found in source.

2007-12-17 Thread Joseph Armbruster
New submission from Joseph Armbruster: There were various files in the source tree that contained low ascii 12 characters throughout. The list includes: url: http://svn.python.org/projects/python/branches/py3k rev: 59539 files: _ctypes.c cfield.c _tkinter.c stringobject.c

[issue1639] Low ascii 12 characters found in source.

2007-12-17 Thread Joseph Armbruster
Joseph Armbruster added the comment: url: http://svn.python.org/projects/python/trunk rev: 59539 files: stringobject.c Added file: http://bugs.python.org/file8974/ascii12sPyTrunk.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1639] Low ascii 12 characters found in source.

2007-12-17 Thread Joseph Armbruster
Joseph Armbruster added the comment: I apparently missed this one. Disregard this issue. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1639> __ ___ Python-bugs-

[issue546558] Windows getpass bug

2007-12-17 Thread Joseph Armbruster
Joseph Armbruster added the comment: For the record, I tested this out with: url: http://svn.python.org/projects/python/branches/py3k: rev: 59540 OS Name: Microsoft Windows XP Professional OS Version: 5.1.2600 Service Pack 2 Build 2600 The following snippet appeared to behave as intended (i

[issue1653] a couple of documentation issues

2007-12-18 Thread Joseph Armbruster
New submission from Joseph Armbruster: I added an option to msi.py (and a support script) that allows the user to optionally decompile the python30.chm post installation. In doing so, I was testing out help() from the interpreter and stumbled upon a few things that I think are issues. One of

[issue1653] a couple of documentation issues

2007-12-18 Thread Joseph Armbruster
Joseph Armbruster added the comment: I left out some important info and made a typo: url: http://svn.python.org/projects/python/branches/py3k rev: 59543 For Issue 1: The two test ifs at lines 1674 and 1678 never are satisfied, not the #windows statement never gets reached

[issue1653] a couple of documentation issues

2007-12-18 Thread Joseph Armbruster
Joseph Armbruster added the comment: >I think it's bad to mix separate issues in a single report, as it makes >it difficult to track which of them had been resolved. Martin, agreed. Please close this issue and I will generate new issues (with patches) for each item as encountered

[issue1666] integer subclass range behavior

2007-12-19 Thread Joseph Armbruster
New submission from Joseph Armbruster: I was wondering what would happen, so I tried this out for the heck of it with: Python 3.0a2 (py3k:59572M, Dec 19 2007, 15:54:07) [MSC v.1500 32 bit (Intel)] on win32 class a(int): def __new__(cls,number): return int.__new__(cls,number) for x in

[issue1666] integer subclass range behavior

2007-12-19 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- type: crash -> behavior __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1666> __ ___ Python-bugs-list mailing li

[issue1667] license() does not process keyboard input correctly

2007-12-19 Thread Joseph Armbruster
New submission from Joseph Armbruster: url: http://svn.python.org/projects/python/branches/py3k rev: 59577 The license() function does not appear to process keyboard input correctly. Symptoms: - Carriage returns do not move license pages downwards - q option did not quit Patch to site.py

[issue1668] -E command line parameter intent

2007-12-19 Thread Joseph Armbruster
New submission from Joseph Armbruster: url: http://svn.python.org/projects/python/branches/py3k rev: 59577 The intent of the -E command line parameter is not entirely clear from it's description. If it implies that All environment variables will be ignored then this is not currently the

[issue1672] test_subprocess tempfile issue

2007-12-20 Thread Joseph Armbruster
New submission from Joseph Armbruster: Subprocess contains a minor temporary file getter that failed in one of my terminals due to the method used to obtain a temporary directory location. Patch attached. -- components: Tests files: subprocess.patch messages: 58875 nosy

[issue1673] test_pep277 missing unicode import

2007-12-20 Thread Joseph Armbruster
New submission from Joseph Armbruster: test_pep277 failed on one of my windows boxes. It looks as if an import unicode is missing. See attached patch. -- components: Tests files: testpep277.patch messages: 58876 nosy: JosephArmbruster severity: normal status: open title: test_pep277

[issue1673] test_pep277 missing unicode import

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: had to rush this one as i'm at work right now and did not verify it. disregard that patch! __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1673] test_pep277 fails

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: I used str( instead of unicode( python -E -tt ../lib/test/regrtest.py test_pep277 test_pep277 1 test OK. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1673] test_pep277 fails

2007-12-20 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- title: test_pep277 missing unicode import -> test_pep277 fails __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1673> __ ___

[issue1673] test_pep277 fails

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: and.. after performing an svn update :-) rt test_pep277 Deleting .pyc/.pyo files ... 36 .pyc deleted, 0 .pyo deleted python -E -tt ../lib/test/regrtest.py test_pep277 test_pep277 1 test OK. About to run again without deleting .pyc/.pyo first: Press any key

[issue1328851] pclose raises spurious exception on win32

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Here's some other quick tests for posterity: TEST 1 [from a downloaded msi from a while ago] Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits"

[issue1667] license() does not process keyboard input correctly

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Here are two examples of why I created this issue: example 1: that is the output I received when pressing Return 5 times using license() python Python 3.0a2 (py3k:59579M, Dec 20 2007, 08:46:46) [MSC v.1500 32 bit (Intel)] on win32 Type "help",

[issue1667] license() does not process keyboard input correctly

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Here's the results, i'll look into it briefly. >>> import sys >>> x = input() Hi: >>> len(x) 3 >>> x = sys.stdin.readline() Hi: >>> len(x) 4 __ Tracke

[issue1667] license() does not process keyboard input correctly

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: >>> import sys >>> x = input() Hi: >>> repr(x) "'Hi:'" >>> x = sys.stdin.readline() Hi: >>> repr(x) "'Hi:\\n'" ___

[issue1667] license() does not process keyboard input correctly

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Ok, just did as so: sys.stdout.write(prompt) sys.stdout.flush() key = sys.stdin.readline() print(repr(key)) print(len(key)) if key not in ('', 'q'): Results: All Python releases are Open Source (see http://www.opensource.org for Hit R

[issue1667] license() does not process keyboard input correctly

2007-12-20 Thread Joseph Armbruster
Joseph Armbruster added the comment: Looks good :-) Python 3.0a2 (py3k:59579M, Dec 20 2007, 08:46:46) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> license() A. HISTORY OF TH

[issue1690] Crash on cancellation of windows install

2007-12-30 Thread Joseph Armbruster
Joseph Armbruster added the comment: This issue has already been reported. http://bugs.python.org/issue1458 -- nosy: +JosephArmbruster __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1700463] VC6 build patch for trunk

2008-01-03 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- components: +Windows _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1700463> _ ___ Python-bugs-list mailing list

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2008-01-03 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- components: +Windows __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1677> __ ___ Python-bugs-list mailing list Unsubs

[issue1472] Small bat files to build docs on Windows

2008-01-03 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- components: +Windows __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1472> __ ___ Python-bugs-list mailing list Unsubs

[issue1572210] help(x) for keywords too

2008-01-03 Thread Joseph Armbruster
Joseph Armbruster added the comment: This issue should probably be closed. Performing the decompile on the command line as directed by the interpreter is as trivial as firing up the interpreter itself. It would make more sense to add an option to the installer that would automagically perform

  1   2   3   >