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 philfr
Recipients philfr
Date 2007-10-01.12:15:23
SpamBayes Score 0.19050844
Marked as misclassified No
Message-id <1191240923.92.0.130371208003.issue1224@psf.upfronthosting.co.za>
In-reply-to
Content
May I suggest replacing the 

     path = urlparse.urlparse(path)[2]

line with the following two:

     path = path.split('?',1)[0]
     path = path.split('#',1)[0]

thereby handling parameters as well as fragments.
History
Date User Action Args
2007-10-01 12:15:24philfrsetspambayes_score: 0.190508 -> 0.19050844
recipients: + philfr
2007-10-01 12:15:24philfrsetspambayes_score: 0.190508 -> 0.190508
messageid: <1191240923.92.0.130371208003.issue1224@psf.upfronthosting.co.za>
2007-10-01 12:15:23philfrlinkissue1224 messages
2007-10-01 12:15:23philfrcreate