Skip to content

Updated tutorial.rst with Python 3.6 amendment reference. #561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,11 @@ CSVs from URLs are also valid inputs to

------

It's also possible to add columns from a dictionary, but this option is
discouraged because dictionaries do not preserve column order.
It's also possible to add columns from a dictionary. For users< Python 3.6 this method is discouraged because dictionary does not preserve the order.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, thank you for this! We're in the middle of requiring Python 3.6 for using this library, so can you please make the change to remove this second sentence here?


**Note**- New Dict implementation in Python 3.6 makes it possible for maintaining order of columns in dictionaires.
For more info- Read https://docs.python.org/3.6/whatsnew/3.6.html#whatsnew36-pep468


.. ipython:: python

Expand Down