Skip to content

Conversation

mdmintz
Copy link
Member

@mdmintz mdmintz commented Aug 30, 2018

Fixing bugs that were seen when switching to Python 3.7.0

After some investigation, I learned that the functionality of Python's re.escape() has changed between Python 3.6.5 and Python 3.7.0:

Python 3.6.5:

>>> import re
>>> re.escape('"')
'\\"'

Python 3.7.0:

>>> import re
>>> re.escape('"')
'"'

Also fixing an unrelated bug with Geckodriver automatic downloads. To do this, I switched to using urllib3.

@mdmintz mdmintz merged commit 5bb03c1 into master Aug 30, 2018
@mdmintz mdmintz deleted the python-3.7.0-compatibility branch August 30, 2018 07:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant