8000 Added consistent pandas imports in io documentation by jackieleng · Pull Request #14097 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Added consistent pandas imports in io documentation #14097

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

Merged
merged 2 commits into from
Aug 29, 2016
Merged
Changes from 1 commit
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
Prev Previous commit
Reverted import change in contributing.rst
  • Loading branch information
jackieleng authored Aug 28, 2016
commit 4a9f041f9b85c75e7095cbd80980f7da95d0b5bc
4 changes: 2 additions & 2 deletions doc/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Bug reports must:
<http://github.github.com/github-flavored-markdown/>`_::

```python
>>> import pandas as pd
>>> df = pd.DataFrame(...)
>>> from pandas import DataFrame
>>> df = DataFrame(...)
...
```

Expand Down
0