-
Logged In: YES
user_id=200117
When I run the following script on the workstation
import pwd, grp
entries = pwd.getpwall()
for e in entries:
if e[2] < 0:
print e
entries = grp.getgrall()
for e in entries:
if e[2] < 0:
print e
--------------------------
I get this output:
('nobody', '*', -2, -2, '', '/', '')
('nogroup', '*', -2, [])
2006-04-07 14:58:09 UTC in Python
-
Logged In: YES
user_id=200117
I added a few print statements to the tests - see attached
file py_243.txt for the results while running on Python-
2.4.3.
2006-04-07 10:07:02 UTC in Python
-
Logged In: YES
user_id=200117
The test workstation is getting its password and group info
from NIS.
The test workstation is running Red Hat Linux, but the NIS
server is running HPUX 11i.
I believe these are the entries causing the errors:
lancaster:/etc > ypcat passwd | grep '-'
nobody:*:-2:-2::/:
lancaster:/etc > ypcat group | grep '-'
nogroup:*:-2:
2006-04-06 14:42:29 UTC in Python
-
Logged In: YES
user_id=200117
Interestingly, the error doesn't occur with Python-2.5a1.
2006-04-06 12:31:28 UTC in Python
-
test_grp and test_pwd fail on PC running Red Hat
Enterprise Edition V4.2 with Python-2.4.3 and Python-
2.5a1.
See attached file for test error messages.
2006-04-06 10:57:57 UTC in Python
-
Logged In: YES
user_id=200117
Hi Neal,
I've just built 2.4.3 on a Red Hat Enterpeise Edition WS
V4.2 machine and this gives the same error.
I've had this vague feeling that I've seen something like
this before, but couldn't find anything when I searched the
tracker...
I've now realised that the error is due to a conflict with
PyXML-0.8.4 which was already installed on both...
2006-04-03 13:37:52 UTC in Python
-
Logged In: YES
user_id=200117
I've just retested with earlier versions.
No error with Python-2.4.1
Similar error with Python-2.4.2.
2006-04-02 14:28:39 UTC in Python
-
I built Python-2.4.3 from source on SUSE 9.3 and get
the following error for test_minidom.py
/usr/local/src/Python-2.4.3: ./python
Lib/test/test_minidom.py
Failed Test
Test Failed: testAltNewline
Traceback (most recent call last):
File "Lib/test/test_minidom.py", line 1384, in ?
func()
File "Lib/test/test_minidom.py", line 427, in
testAltNewline
confirm(domstr ==...
2006-04-02 14:03:37 UTC in Python
-
When I tried to open ChangeLog.txt in DrPython-3.9.9 -
I got the following error message:
There was an error opening the document
C:/Python23/Tools/drpython/ChangeLog.txt.
Traceback (most recent call last):
File "C:\Python23\Tools\drpython\drpython.py", line
2699, in OpenFile
self.txtDocument.SetText(drEncoding.EncodeText
(self, oof, encoding))
File...
2005-02-09 08:25:33 UTC in DrPython
-
Logged In: YES
user_id=200117
Sorry - this is a duplicate of 1062601, please ignore.
2004-11-08 22:53:59 UTC in DrPython