Skip to content

PR06 doc string fixes #28946

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 49 commits into from
Oct 13, 2019
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
1229963
updated boolean to bool for api.extension.extensionarray methods
tolaa001 Oct 3, 2019
34db4a3
updating categorical.from codes args with type string to str and bool…
tolaa001 Oct 3, 2019
ad9e2ce
converting DatetimeLikeArrayMixin.value_count arg type from boolean t…
tolaa001 Oct 3, 2019
78d1853
converting methods in datetimelike module with string args to str
tolaa001 Oct 3, 2019
d0e9bd4
converting method arg types boolean to bool in integer.py
tolaa001 Oct 3, 2019
3b5347f
converting method arg types string to str in period.py
tolaa001 Oct 3, 2019
9b64f96
converting boolean to bool in docstring in cast.py
tolaa001 Oct 3, 2019
6fca012
converting boolean to bool in common.py
tolaa001 Oct 3, 2019
6535906
converting boolean to bool in concat.py
tolaa001 Oct 3, 2019
cd84668
converting string to str in dtypes.py
tolaa001 Oct 3, 2019
5828d24
converting boolean to bool in missing.py
tolaa001 Oct 3, 2019
26bbd72
Merge remote-tracking branch 'upstream/master' into more_doc_contribu…
tolaa001 Oct 6, 2019
1c33d6f
change to array-like of int
tolaa001 Oct 11, 2019
8b362d2
change to 'category' from the str 'category'
tolaa001 Oct 11, 2019
073e45f
changed / to ,
tolaa001 Oct 11, 2019
794e93c
Merge remote-tracking branch 'upstream/master' into more_doc_contribu…
tolaa001 Oct 11, 2019
a30457a
catrgorical fix
tolaa001 Oct 11, 2019
3ccd062
Merge remote-tracking branch 'upstream/master' into more_doc_contribu…
tolaa001 Oct 12, 2019
fb3690b
docstring fix for to_json method
tolaa001 Oct 12, 2019
90f04c9
docstring fix for unstack method
tolaa001 Oct 12, 2019
4cf387e
docstring fix for nunique method
tolaa001 Oct 12, 2019
e4bc525
docstring fix for indexer_at_time method
tolaa001 Oct 12, 2019
817b73d
docstring fix for sortlevel method
tolaa001 Oct 12, 2019
7f08a4b
docstring fix for to_frame method
tolaa001 Oct 12, 2019
3f8db1d
docstring fix for categoricalindex
tolaa001 Oct 12, 2019
8bdcddf
docstring fix for shift method
tolaa001 Oct 12, 2019
c535f45
docstring fix for eval method
tolaa001 Oct 12, 2019
9c43759
docstring fix for interval_rangemethod
tolaa001 Oct 12, 2019
452baf4
docstring fix for infer_freq method
tolaa001 Oct 12, 2019
46a83fc
docstring fix for to_numeric method
tolaa001 Oct 12, 2019
695350f
docstring fix for qcut method
tolaa001 Oct 12, 2019
f6f3606
docstring fix for readstata
tolaa001 Oct 12, 2019
ef33f1d
docstring fix for readstata
tolaa001 Oct 12, 2019
03f6a88
docstring fix for hdfstore.append
tolaa001 Oct 12, 2019
2836eae
docstring fix for read_sql
tolaa001 Oct 12, 2019
4e46f71
docstring fix for read_csv and read_table
tolaa001 Oct 12, 2019
724d887
docstring fix for read_json
tolaa001 Oct 12, 2019
6b3706b
eval.py docs updated
tolaa001 Oct 13, 2019
84edcb4
eval.py docs for engine updated
tolaa001 Oct 13, 2019
b3b9407
to_numeric.py docs updated
tolaa001 Oct 13, 2019
06559f7
append.py docs for append updated
tolaa001 Oct 13, 2019
79dfacb
append.py docs for dropna updated
tolaa001 Oct 13, 2019
dcf7515
stata.py docs updated
tolaa001 Oct 13, 2019
55ff790
pep8 fix
tolaa001 Oct 13, 2019
c110b5a
remove optional from eval.py docstring
tolaa001 Oct 13, 2019
466b179
updating docstring for qcut method
tolaa001 Oct 13, 2019
b9193f8
remove comma from read_json
tolaa001 Oct 13, 2019
4c391d6
updating docs for append method
tolaa001 Oct 13, 2019
754939c
Merge remote-tracking branch 'upstream/master' into more_doc_contribu…
tolaa001 Oct 13, 2019
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
Next Next commit
docstring fix for read_sql
  • Loading branch information
tolaa001 committed Oct 12, 2019
commit 2836eaeb84914c1b62b7af0f16dc6b0d194f63bf
2 changes: 1 addition & 1 deletion pandas/io/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def read_sql_query(
If a DBAPI2 object, only sqlite3 is supported.
index_col : string or list of strings, optional, default: None
Column(s) to set as index(MultiIndex).
coerce_float : boolean, default True
coerce_float : bool, default True
Attempts to convert values of non-string, non-numeric objects (like
decimal.Decimal) to floating point. Useful for SQL result sets.
params : list, tuple or dict, optional, default: None
Expand Down