On 18 mar, 02:20, Maciej Bliziński <[EMAIL PROTECTED]> wrote:
> I've been hit by a urllib2.unquote() issue. Consider the following
> unit test:
>
> import unittest
> import urllib2
>
> class UnquoteUnitTest(unittest.TestCase):
>
> def setUp(self):
> self.utxt = u'%C4%99'
> self.stx
I've been hit by a urllib2.unquote() issue. Consider the following
unit test:
import unittest
import urllib2
class UnquoteUnitTest(unittest.TestCase):
def setUp(self):
self.utxt = u'%C4%99'
self.stxt = '%C4%99'
def testEq(self):
self.assertEqual(
self.u