Fix doctest skipping based on the running Python version

This commit is contained in:
Adrián Chaves 2019-11-13 09:14:20 +01:00 committed by GitHub
parent 414e6e2fd5
commit b642a1fca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ to get all of them::
from sys import version_info
.. skip: next if(version_info <= (3, 5), reason="Only Python 3.6+ dictionaries match the output")
.. skip: next if(version_info < (3, 6), reason="Only Python 3.6+ dictionaries match the output")
Having figured out how to extract each bit, we can now iterate over all the
quotes elements and put them together into a Python dictionary::