HI,
when I want use python nntplib:
>>> import nntplib
>>> s=nntplib.NNTP('news.t-com.hr')
>>> s.group('hr.mag.bug')
THEN ERROR IS:
Traceback (most recent call last):
File "", line 1, in -toplevel-
s.group('hr.mag.bug')
File "C:\Python24\lib\nntplib.py", line 346, in group
resp = sel
Hi all,
When I want setup my script:
I write:
from distutils.core import setup
setup(name="myscript",
version='1.0',
scripts=["myscripts.py"])
or some else example,error is
Traceback (most recent call last):
File "", line 1, in -toplevel-
setup(name="myscript",