Skip to content

Docstring GL01 GL02 fixes #26526

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 43 commits into from
Jun 21, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
70a5415
Fixed GL01 and GL02 in pandas.api
May 26, 2019
f31369c
Error code: GL01,GL02 fixes for pandas.HDFStore
May 26, 2019
1b6f06c
fixing the pep8 issue that was generated
May 26, 2019
bef77ae
Fixing GL01,GL02 on pandas.core.resample.Resampler.pipe
May 26, 2019
25674cb
GL01,GL02 fix for pandas.Series.T
May 26, 2019
a894109
fixed pandas.api GL01,GL02
May 26, 2019
01313a9
GL01 GL02 fix on read_html
May 26, 2019
c823d88
GL01 GL02 fix on read_sql_query
May 26, 2019
3855046
GL01,GL02 solved for pandas.IntervalIndex
May 26, 2019
a194e67
fixed .ix for DataFrame,Series and Panel
May 27, 2019
e546595
pandas.io.stata.StataReader.data deprecated method doc updated for GL…
May 27, 2019
41953de
GL01,GL02 error fix for pandas.eval
May 27, 2019
63b8e0c
Fixed GL01,GL02 for pandas.merge and pandas.merge_asof
May 27, 2019
5ad9a5e
fixed pandas.testing GL01,GL02
May 27, 2019
3a41220
fixed GL01,GL02 for pandas.plotting
May 27, 2019
4daacc5
fixed pandas.IntervalDtype GL01,GL02
May 27, 2019
6137562
Fixed GL01,GL02 pandas.PeriodDtype
May 27, 2019
6520521
Fixed GL01,GL02 pandas.DatetimeTZDtype errors
May 27, 2019
66486b8
GL01,GL02 fixes MultiIndex
May 27, 2019
2811f0a
GL01 for Panel.iteritems
May 28, 2019
8b0ace9
GL01 fix pandas.DataFrame.plot
May 28, 2019
281244e
GL01 fix for pandas.Categorical.codes
May 28, 2019
c6dfcf7
Reverting module level docstring to original as validate_docstrings d…
May 29, 2019
01acfd0
reverting module docstring
killerontherun1 May 29, 2019
1fbc33f
reverting module level docstring changes
killerontherun1 May 29, 2019
f19dc4b
reverting changes outside pandas.core
killerontherun1 May 29, 2019
27438f5
reverting changes outside pandas.core
killerontherun1 May 29, 2019
d8790f4
reverting changes outside pandas.core
killerontherun1 May 29, 2019
ff3ebab
reverting changes outside pandas.core
killerontherun1 May 29, 2019
63426eb
reverted changes outside pandas.core
killerontherun1 May 29, 2019
1b0527e
reverting changes outside pandas.core
killerontherun1 May 29, 2019
654b166
reverting changes outside pandas.core
killerontherun1 May 29, 2019
a3e9376
reverting changes outside pandas.core
killerontherun1 May 29, 2019
558a527
reverting changes outside pandas.core
killerontherun1 May 29, 2019
44368ae
reverting changes outside pandas.core
killerontherun1 May 29, 2019
8ff2110
correcting reverted changes to pandas.io.pytables
killerontherun1 May 29, 2019
31cb387
updating accessor
killerontherun1 May 31, 2019
e19bbc0
accessor fix
killerontherun1 May 31, 2019
31eaf26
added \n instead of line breaks
killerontherun1 May 31, 2019
4234703
updating line breaks with \n
killerontherun1 May 31, 2019
7a33496
Merge remote-tracking branch 'upstream/master' into docstring_GL01GL0…
Jun 14, 2019
2a81152
update to resolve
killerontherun1 Jun 14, 2019
fe41a8a
solving line break issue for to_tuples in pandas.arrays.InervalArray
Jun 19, 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
fixed pandas.api GL01,GL02
  • Loading branch information
Mathew George authored and Mathew George committed May 26, 2019
commit a894109c0e797d02b97c6c04bff283d5f08eec3b
4 changes: 3 additions & 1 deletion pandas/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
""" public toolkit API """
"""
Public toolkit API
"""
from . import types, extensions # noqa
6 changes: 2 additions & 4 deletions pandas/core/accessor.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""

accessor.py contains base classes for implementing accessor properties
Accessor.py contains base classes for implementing accessor properties
that can be mixed into or pinned onto other pandas classes.

"""
from typing import Set
import warnings
Expand Down Expand Up @@ -196,7 +194,7 @@ def decorator(accessor):
return decorator


_doc = """\
_doc = """
Register a custom accessor on %(klass)s objects.

Parameters
Expand Down
3 changes: 2 additions & 1 deletion pandas/core/dtypes/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,8 @@ def is_named_tuple(obj):


def is_hashable(obj):
"""Return True if hash(obj) will succeed, False otherwise.
"""
Return True if hash(obj) will succeed, False otherwise.

Some types will pass a test against collections.abc.Hashable but fail when
they are actually hashed with hash().
Expand Down