[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2013-03-28 Thread Hugo Lopes Tavares
Hugo Lopes Tavares added the comment: I just caught a bug because on Python 3 `HTTPMessage` has `get_param`, while on Python 2 there is `getparam`, with a different method signature. I am trying to figure out a solution so my code can run in both python 2 and 3 without ifs on python version

[issue13592] repr(regex) doesn't include actual regex

2012-08-23 Thread Hugo Lopes Tavares
Hugo Lopes Tavares added the comment: Any news about this patch? Is it going to be merged? When is next CPython release? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13592

[issue13592] repr(regex) doesn't include actual regex

2012-07-20 Thread Hugo Lopes Tavares
Hugo Lopes Tavares hlt...@gmail.com added the comment: Thanks for the review ezio.melotti. He has notice a few things in my patch: * assertEquals is deprecated; should use assertEqual * the convention is assertEqual(result, expected), not assertEqual(expected, result) * it should handle quotes

[issue13592] repr(regex) doesn't include actual regex

2012-07-20 Thread Hugo Lopes Tavares
Hugo Lopes Tavares hlt...@gmail.com added the comment: Changed two test names to avoid misunderstanding. -- Added file: http://bugs.python.org/file26454/issue13592_add_repr_to_regex_v2_1.patch ___ Python tracker rep...@bugs.python.org http

[issue9736] doctest.DocTestSuite doesn't handle test globs correctly

2012-07-20 Thread Hugo Lopes Tavares
Hugo Lopes Tavares hlt...@gmail.com added the comment: I see the bug was not fixed yet, and I started to investigate it. I am attaching a test patch. I don't know if I will get it working soon, since I see it as a very low priority for Python. -- keywords: +patch nosy: +hltbra

[issue15398] intermittence on UnicodeFileTests.test_rename at test_pep277 on MacOS X

2012-07-19 Thread Hugo Lopes Tavares
Hugo Lopes Tavares hlt...@gmail.com added the comment: I had no problems after running for a very long time (using -F). I am using Mac OSX 10.6.8. -- nosy: +hltbra ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15398

[issue13592] repr(regex) doesn't include actual regex

2012-07-19 Thread Hugo Lopes Tavares
Hugo Lopes Tavares hlt...@gmail.com added the comment: Hey, I started the patch under `default` branch, and get the following working: import re re.compile(foo) re.compile(foo, re.UNICODE) re.compile(foo, re.DOTALL) re.compile(foo, re.DOTALL|re.UNICODE) re.compile

[issue9409] doctest in python2.7 can't handle non-ascii characters

2010-07-28 Thread Hugo Lopes Tavares
New submission from Hugo Lopes Tavares hlt...@gmail.com: When trying to run my test suite I had a problem with python2.7. My suite ran 100% in Python2.4, Python2.5, Python2.6 and Python3.2a0, so I thought it would be a kind of doctest flaw. Taking a look at the code, there is the following

[issue9409] doctest in python2.7 can't handle non-ascii characters

2010-07-28 Thread Hugo Lopes Tavares
Changes by Hugo Lopes Tavares hlt...@gmail.com: Added file: http://bugs.python.org/file18243/non-ascii.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9409

[issue9409] doctest in python2.7 can't handle non-ascii characters

2010-07-28 Thread Hugo Lopes Tavares
Changes by Hugo Lopes Tavares hlt...@gmail.com: Added file: http://bugs.python.org/file18244/example.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9409