8000 DOC: Fix summaries not ending with a period by YuechengWu · Pull Request #24190 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Fix summaries not ending with a period #24190

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 23 commits into from
Dec 11, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
91ab671
fix Summary does not end with a period error
YuechengWu Dec 10, 2018
b366819
fixed generic.py PEP8 - line too long issues
YuechengWu Dec 10, 2018
88d6664
fixed generic.py PEP8 - trailing whitespace issues
YuechengWu Dec 10, 2018
ad50026
fixed minor errors
YuechengWu Dec 10, 2018
d3d0bd0
removed a few more \n
YuechengWu Dec 10, 2018
97444fb
added back required \n
YuechengWu Dec 10, 2018
dc0a303
Update pandas/core/arrays/datetimes.py
datapythonista Dec 10, 2018
8639841
Update pandas/core/arrays/datetimes.py
datapythonista Dec 10, 2018
b052287
fix Summary does not end with a period error
YuechengWu Dec 10, 2018
41e4757
fixed generic.py PEP8 - line too long issues
YuechengWu Dec 10, 2018
074b925
fixed generic.py PEP8 - trailing whitespace issues
YuechengWu Dec 10, 2018
a1e0df2
fixed minor errors
YuechengWu Dec 10, 2018
860bb8d
removed a few more \n
YuechengWu Dec 10, 2018
ce03033
revert back \n
YuechengWu Dec 11, 2018
b41fed4
fixing conflicts
YuechengWu Dec 11, 2018
c10e7c5
revert \n
YuechengWu Dec 11, 2018
5f67556
all my changes in a single commit
YuechengWu Dec 11, 2018
7b8d1e8
Merge branch 'issue-24164' of https://github.com/YuechengWu/pandas in…
YuechengWu Dec 11, 2018
1950b08
All my changes in a single commit
YuechengWu Dec 11, 2018
671b5bd
Merge branch 'issue-24164' of https://github.com/YuechengWu/pandas in…
YuechengWu Dec 11, 2018
18350bf
clean up branch history
YuechengWu Dec 11, 2018
aecb483
Merge branch 'master' of https://github.com/YuechengWu/pandas into is…
YuechengWu Dec 11, 2018
dad7f70
Merge branch 'issue-24164' of https://github.com/YuechengWu/pandas in…
YuechengWu Dec 11, 2018
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 minor errors
  • Loading branch information
YuechengWu committed Dec 11, 2018
commit a1e0df232f95f712104634cb76a1952109ee0067
2 changes: 1 addition & 1 deletion pandas/core/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _delegate_method(self, name, *args, **kwargs):
def _add_delegate_accessors(cls, delegate, accessors, typ,
overwrite=False):
"""
add accessors to cls from the delegate class.
Add accessors to cls from the delegate class.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/arrays/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ def set_ordered(self, value, inplace=False):

def as_ordered(self, inplace=False):
"""
Sets the Categorical to be ordered.
Set the Categorical to be ordered.

Parameters
----------
Expand All @@ -795,7 +795,7 @@ def as_ordered(self, inplace=False):

def as_unordered(self, inplace=False):
"""
Sets the Categorical to be unordered.
Set the Categorical to be unordered.

Parameters
----------
Expand Down
18 changes: 9 additions & 9 deletions pandas/core/arrays/datetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1070,19 +1070,19 @@ def date(self):

return tslib.ints_to_pydatetime(timestamps, box="date")

year = _fi C2CC eld_accessor('year', 'Y', "\n The year of the datetime.\n")
year = _field_accessor('year', 'Y', " The year of the datetime.")
month = _field_accessor('month', 'M',
"\n The month as January=1, December=12. \n")
day = _field_accessor('day', 'D', "\nThe days of the datetime.\n")
hour = _field_accessor('hour', 'h', "\nThe hours of the datetime.\n")
minute = _field_accessor('minute', 'm', "\nThe minutes of the datetime.\n")
second = _field_accessor('second', 's', "\nThe seconds of the datetime.\n")
" The month as January=1, December=12. ")
day = _field_accessor('day', 'D', "The days of the datetime.")
hour = _field_accessor('hour', 'h', "The hours of the datetime.")
minute = _field_accessor('minute', 'm', "The minutes of the datetime.")
second = _field_accessor('second', 's', "The seconds of the datetime.")
microsecond = _field_accessor('microsecond', 'us',
"\nThe microseconds of the datetime.\n")
"The microseconds of the datetime.")
nanosecond = _field_accessor('nanosecond', 'ns',
"\nThe nanoseconds of the datetime.\n")
"The nanoseconds of the datetime.")
weekofyear = _field_accessor('weekofyear', 'woy',
"\nThe week ordinal of the year.\n")
"The week ordinal of the year.")
week = weekofyear
_dayofweek_doc = """
The day of the week with Monday=0, Sunday=6.
Expand Down
Binary file removed scripts/tmp.xlsx
Binary file not shown.
0