This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年04月14日 10:41 by clikkeb, last changed 2022年04月11日 14:57 by admin.
| Messages (16) | |||
|---|---|---|---|
| msg158253 - (view) | Author: clikkeb (clikkeb) | Date: 2012年04月14日 10:41 | |
It's a common issue that IDLE cannot start on Windows because "IDLE's subprocess didn't make connection.Either IDLE can't start a subprocess or personal firewall software is blocking the connection." Everyone claim that the user should set the firewal so that IDLE can connect to subprocess via loopback. I found, instead, that this issue is often caused by an incorrect or missing setting of one the following variables: HOME, USERPROFILE or the combination of HOMEPATH and HOMEDRIVE; if these variables don't represent an existent and writable directory, the error occurs. Try setting HOMEPATH to an unexistent or unwritable directory just before launching idle.bat script. Check IdleConf.GetUserCfgDir() in module configHandler.py, where the function os.path.expanduser is called to get the user home directory. You might also temporarly patch GetUserCfgDir, setting the userDir variable to an unexistent path just after it has been initialized via os.path.expanduser (line 202). Should be considered a check on expanduser behaviour? OS: Windows XP Python version: 3.2.2 clikkeb |
|||
| msg158288 - (view) | Author: Roger Serwy (roger.serwy) * (Python committer) | Date: 2012年04月14日 21:54 | |
I can confirm that setting HOMEPATH to a non-existent directory will prevent IDLE from starting when using idle.bat. If you modify idle.bat such that python.exe is called instead of pythonw.exe, then IDLE starts normally, but with this console message:
Warning: os.path.expanduser("~") points to
C:\Users\doesnotexist
but the path does not exist.
Normally, the message is written to sys.stderr, which is None when using pythonw. See issue13582 for more information.
|
|||
| msg158367 - (view) | Author: clikkeb (clikkeb) | Date: 2012年04月15日 20:42 | |
Thanks for your answer. Trying to understand how IDLE uses HOMEPATH and USERPROFILE Windows variables, I have found the following information: 1) it seems that when executed via Windows command prompt (cmd.exe), os.path.expanduser refers to USERPROFILE to determine the user's home directory; 2) analizing the stack traces of the first calls to IdleConf.GetUserCfgDir, you can see that GetUserCfgDir (which calls expanduser) is called three times during IDLE startup: the first two times it refers to USERPROFILE, the third (called via run.py, probably after starting a subprocess) it refers to the combination of HOMEDRIVE and HOMEPATH. (???) 3) when you start IDLE using pythonw, sys.stderr.write(warn) seems to raise an AttributeError exception, which is unhandled. This causes IDLE to stop running when you either start IDLE that way and the user's home directory is unreachable. Due to the Python's tricky behaviour in determining the Windows user's home directory, my opinion would be to consider if it is worth to go further with this discussion or if it could produce a benefit to IDLE. For sure, it gave me a little bit of headache. clikkeb. |
|||
| msg158387 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2012年04月16日 00:58 | |
It certainly is worthwhile pursing this in some fashion, since at the very least the existing error message needs to be improved. But perhaps there is something more that can be done to gracefully handle this case, instead. I think the next interesting question is to find out why an invalid home directory causes idle to not start up. There's no obvious reason why that should be the case in principle, so I suspect there's some error handling missing somewhere. This probably also applies to 2.7; someone should test that. |
|||
| msg158404 - (view) | Author: clikkeb (clikkeb) | Date: 2012年04月16日 08:30 | |
I think that lines 207-210 of GetUserCfgDir should be modified like this: try: sys.stderr.write(warn) except (IOError, AttributeError): # <---- pass #^^^^^^^^^^^^^^ because when you start IDLE via pythonw.exe (that sets sys.stderr to "None"), the function call sys.stderr.write(warn) raises the following exception: AttributeError: 'NoneType' object has no attribute 'write' and IDLE stops running without displaying any exception error, because that exception is unhandled. There is a funcion call to sys.stderr.write also at line 222, just before a "raise SystemExit" statement, which makes ininfluent the missing AttributeError exception handling. |
|||
| msg158432 - (view) | Author: Andrew Svetlov (asvetlov) * (Python committer) | Date: 2012年04月16日 13:08 | |
I guess IdleConf should to have flag like 'writable'. If user environment points to invalid location (or there are no write access) this flag should be set. It flag can affect IDLE configuration dialog: user should be notified what him changes will not be permanently saved. Subprocess can check that flag as well if need. BTW, there are related issue8231. |
|||
| msg158534 - (view) | Author: clikkeb (clikkeb) | Date: 2012年04月17日 08:22 | |
It is one of the possible solutions. In combination with the "writable flag" solution, you might create a class variable in IdleConf (e.g. "user_cfg") that contains the user's home directory; such variable will be initialized to an empty string by IdleConf.__init__. On each call, GetUserCfgDir tries to initialize "user_cfg" only if it is an empty string, otherwise it returns it's content. Anyway, keep in mind that in GetUserConfig there's an unhandled exception (AttributeError) that might be the cause of the "IDLE doesn't start..." issue reported by users. |
|||
| msg180121 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2013年01月17日 08:35 | |
>I think the next interesting question is to find out why an invalid home directory causes idle to not start up. There's no obvious reason why that should be the case in principle, As Roger showed, IDLE will start up with an invalid home directory. > so I suspect there's some error handling missing somewhere Yes, the uncaught exception raised when attempting to display a non-essential but user-useful messages (this is the third issue I know of about this). There are 5 places in configHandler.py where a warning is directly printed to sys.stderr. There are two similar writes in PyShell.py. The first warning is the problem here, but any of them could be a problem and all should be handled better. Lib/idlelib\PyShell.py: 1357: sys.stderr.write("Error: %s\n" % str(msg)) Lib/idlelib\PyShell.py: 1358: sys.stderr.write(usage_msg) Lib/idlelib\configHandler.py: 209: sys.stderr.write(warn) Lib/idlelib\configHandler.py: 223: sys.stderr.write(warn) Lib/idlelib\configHandler.py: 255: sys.stderr.write(warning) Lib/idlelib\configHandler.py: 367: sys.stderr.write(warning) Lib/idlelib\configHandler.py: 624: sys.stderr.write(warning) Why are warning used instead of message boxes? Perhaps easier, perhaps the latter are not available because the tk loop is not running. Possible solutions: * Discard the message by just catching AttributeError (clikkeb) -- at each place indicated above. This would be better than nothing, but only as a temporary measure, and there is a better temporary measure below. * Rearrange the start up process to make message boxes available, with default configuraton, before the configuration process. * Make a list of messages and display them when it must (on exit, if that is possible with atexit) or in message boxes when it can. * Solve the more general problem of writing to None by making sys.stdout and sys.stderr not be None, #13582. At minimum, even as a temporary measure, use something that just swallows output. Something like import io class DummyOut(io.IOBase): def write(self, s): return len(s) dum = DummyOut() print(dum.write('sixsix')) # 6 |
|||
| msg185892 - (view) | Author: Roger Serwy (roger.serwy) * (Python committer) | Date: 2013年04月03日 06:12 | |
This issue triggers the problem described in #13582. It points out problems with IDLE's configuration manager w.r.t. determining the home directory. I changed the title so that it reflects that point. |
|||
| msg212257 - (view) | Author: Divyanshu Sharma (Divyanshu) | Date: 2014年02月26日 15:06 | |
I found a weird solution for the problem. Exchange the names of python and pythonw in the python33 folder. This makes the IDLE to call both and as a result python opens in both modes simultaneosly, and the subprocess connection error don't shows up. |
|||
| msg212296 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2014年02月26日 20:07 | |
I do not understand what you mean by "Exchange the names of python and pythonw in the python33 folder.". In any case, idle.bat cannot run both simultaneously. Perhaps idle.bat should have an option to start with python instead of pythonw. |
|||
| msg215588 - (view) | Author: Divyanshu Sharma (Divyanshu) | Date: 2014年04月05日 09:58 | |
I found the root cause for the error regarding python in my pc that shows the error message "IDLE's subprocess didn't make connection.Either IDLE can't start a subprocess or personal firewall software is blocking the connection." It was caused due to a software known as proxifier which provides fast and somewhat unrestricted network access on proxy networks. It redirected my connection request from pythonw.exe to the port and IP on which the proxy network is established. The problem hence can be easily sorted by creating new proxification rules in such softwares, if the cause of the problem can be traced to some similar mechanisms used that may intercept and modify the network requests for other programs. |
|||
| msg228267 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2014年10月02日 22:17 | |
Divyanshu, please do not hijack by changing the title to a different issue. There are multiple causes for the message, some unknown. Your non-standard system is different from that of clikkeb. |
|||
| msg252040 - (view) | Author: John Gray (John Gray) | Date: 2015年10月01日 17:32 | |
I hit this issue with an "H:" homedrive that is on a network share, and then in Windows is using "offline files" to keep a local copy. .idlerc was not cached so IDLE worked when online/connected to my work network but not when I was offline. The temporary workaround was to mark .idlerc as "available offline" when connected. I wanted to document this in case others hit this scenario. I also noticed that there is a .idlerc directory created in my local user directory c:\users\[username\.idlerc. This one has the recent-files.lst in it. So IDLE is creating two copies of .idlerc - one in the environment-variable-defined (and roaming) home directory, and one in the default local user directory. I would suggest that as this bug is investigated, you keep track of both instances of .idlerc. |
|||
| msg252041 - (view) | Author: John Gray (John Gray) | Date: 2015年10月01日 17:35 | |
For the h: drive issue mentioned above: This was on Python 2.7.10. |
|||
| msg252062 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2015年10月01日 21:55 | |
John, thank you for the additional information. 2 copies of .idlerc is definitely bad. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:29 | admin | set | github: 58781 |
| 2020年06月08日 00:35:50 | terry.reedy | set | versions: + Python 3.10, - Python 3.6, Python 3.7 |
| 2017年06月30日 00:19:23 | terry.reedy | set | assignee: terry.reedy versions: + Python 3.7, - Python 2.7, Python 3.5 |
| 2015年10月07日 00:33:28 | markroseman | set | nosy:
+ markroseman |
| 2015年10月01日 21:55:03 | terry.reedy | set | messages:
+ msg252062 versions: + Python 3.5, Python 3.6, - Python 3.3, Python 3.4 |
| 2015年10月01日 17:35:22 | John Gray | set | messages: + msg252041 |
| 2015年10月01日 17:32:35 | John Gray | set | nosy:
+ John Gray messages: + msg252040 |
| 2014年10月02日 22:17:19 | terry.reedy | set | messages:
+ msg228267 title: IDLE: "IDLE's subprocess didn't make connection.Either IDLE can't start a subprocess or personal firewall software is blocking the connection." -> IDLE: inconsistent use of HOMEDRIVE, HOMEPATH, and USERPROFILE on Windows |
| 2014年07月10日 18:51:09 | terry.reedy | link | issue10722 superseder |
| 2014年04月05日 09:58:40 | Divyanshu | set | messages:
+ msg215588 title: IDLE: resolving home directory for configuration uses HOMEDRIVE, HOMEPATH, and USERPROFILE inconsistently on Windows. -> IDLE: "IDLE's subprocess didn't make connection.Either IDLE can't start a subprocess or personal firewall software is blocking the connection." |
| 2014年02月26日 20:07:25 | terry.reedy | set | messages: + msg212296 |
| 2014年02月26日 15:06:58 | Divyanshu | set | nosy:
+ Divyanshu messages: + msg212257 |
| 2013年06月15日 18:57:15 | terry.reedy | set | versions: + Python 2.7, Python 3.4, - Python 3.2 |
| 2013年04月03日 06:12:56 | roger.serwy | set | messages:
+ msg185892 title: IDLE: closes when writing warnings on Windows -> IDLE: resolving home directory for configuration uses HOMEDRIVE, HOMEPATH, and USERPROFILE inconsistently on Windows. |
| 2013年01月17日 08:35:48 | terry.reedy | set | messages:
+ msg180121 title: IDLE cannot connect to subprocess - New solution -> IDLE: closes when writing warnings on Windows |
| 2012年04月17日 08:22:48 | clikkeb | set | messages: + msg158534 |
| 2012年04月16日 13:08:18 | asvetlov | set | messages: + msg158432 |
| 2012年04月16日 08:30:12 | clikkeb | set | messages: + msg158404 |
| 2012年04月16日 00:58:14 | r.david.murray | set | versions:
+ Python 3.3 nosy: + r.david.murray messages: + msg158387 type: behavior stage: needs patch |
| 2012年04月15日 20:42:22 | clikkeb | set | messages: + msg158367 |
| 2012年04月14日 21:54:56 | roger.serwy | set | nosy:
+ terry.reedy, roger.serwy, asvetlov messages: + msg158288 |
| 2012年04月14日 10:41:05 | clikkeb | create | |