Matt Lewellyn

Results 4 issues of Matt Lewellyn

My understanding is that literal strings should not be escaped at any point. However: `HTML.li(c=link_to('something', '#'))` yields `literal('<a href="#">something</a>')` in Python 3 (3.6 to be specific). The same input in...

### Expected Behaviour I am attempting to run the multiprocessing-related examples (ping-pong specifically for this issue, but output is similar for hello_bridge and hello_multi_bridge) in Windows. The example should start...

help wanted
windows

With scripttest 1.3, Python 2.7.8 win32. When the test directory already exists, TestFileEnvironment.clear fails, with "WindowsError: [Error 5] Access is denied:" on the mkdir. It appears that Windows holds a...

Python 3.12 deprecates the use of `datetime.datetime.utcnow`, suggesting instead to use `datetime.datetime.now(datetime.UTC)`. Example from the `humanize` method: ``` File "/root/project/my_project/libs/utils.py", line 54, in arrow_humanize return time.humanize() ^^^^^^^^^^^^^^^ File "/root/project/.tox/py312/lib/python3.12/site-packages/arrow/arrow.py", line...