[Zope-Checkins] CVS: Packages/webdav - client.py:1.19
Fred L. Drake, Jr.
fdrake@acm.org
Wed, 10 Apr 2002 22:59:21 -0400
Update of /cvs-repository/Packages/webdav
In directory cvs.zope.org:/tmp/cvs-serv3396/lib/python/webdav
Modified Files:
client.py
Log Message:
Use the random module instead of the deprecated whrandom module.
whrandom triggers a DeprecationWarning when using CVS Python.
=== Packages/webdav/client.py 1.18 => 1.19 ===
from common import rfc1123_date
from cStringIO import StringIO
-from whrandom import random
+from random import random
from urllib import quote