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.

Author JosephArmbruster
Recipients JosephArmbruster, gvanrossum
Date 2007-12-20.15:44:24
SpamBayes Score 0.065882295
Marked as misclassified No
Message-id <1198165464.89.0.270503781763.issue1328851@psf.upfronthosting.co.za>
In-reply-to
Content
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" or "license" for more information.
>>> import os
>>> p = os.popen("net share <nul:")
>>> print p.read()
The Server service is not started.

Is it OK to start it? (Y/N) [Y]:

>>> p.close()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IOError: [Errno 0] Error
>>>

TEST 2

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.
>>> import os
>>> p = os.popen("net share <nul:")
>>> print(p.read())
No valid response was provided.
The Server service is not started.

Is it OK to start it? (Y/N) [Y]:

>>> p.close()
-256
History
Date User Action Args
2007-12-20 15:44:24JosephArmbrustersetspambayes_score: 0.0658823 -> 0.065882295
recipients: + JosephArmbruster, gvanrossum
2007-12-20 15:44:24JosephArmbrustersetspambayes_score: 0.0658823 -> 0.0658823
messageid: <1198165464.89.0.270503781763.issue1328851@psf.upfronthosting.co.za>
2007-12-20 15:44:24JosephArmbrusterlinkissue1328851 messages
2007-12-20 15:44:24JosephArmbrustercreate