Alex:

    I tried this change and it appears to work. The python docs say that
'long integers have unlimited precision'

--- Url.py      Mon Jul 21 12:29:37 2003
+++ /usr/local/lib/python2.2/site-packages/PyPlucker/Url.py     Thu Aug 21
21:27:26 2003
@@ -256,7 +256,7 @@
          i=0
          while i<len(s) and s[i] in string.digits:
              i=i+1
-         return int(s[:i])
+         return long(s[:i])
 
      # This is basically an alphabetic sort, with one exception:
      # If the two strings start differing in some numerical

                                Chris

Christopher R. Hawks Software Engineer
Syscon Plantstar a Division of Syscon International
-------------------------------------------------------------------------
The Internet is totally out of control, impossible to map accurately, and 
being used far beyond its original intentions. So far, so good.
    -- Dr. Dobb's Journal May 1993




_______________________________________________
plucker-dev mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-dev

Reply via email to