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
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
8000 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
revert back \n
  • Loading branch information
YuechengWu committed Dec 11, 2018
commit ce03033227ec250211efad0dde968a4c72b1f24c
4 changes: 2 additions & 2 deletions pandas/core/arrays/datetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def f(self):
return result

f.__name__ = name
f.__doc__ = "{}".format(docstring)
f.__doc__ = "\n{}\n".format(docstring)
return property(f)


Expand Down Expand Up @@ -1124,7 +1124,7 @@ def date(self):
weekday_name = _field_accessor(
'weekday_name',
'weekday_name',
"The name of day in a week (ex: Friday).. deprecated:: 0.23.0")
"The name of day in a week (ex: Friday)\n\n.. deprecated:: 0.23.0")

dayofyear = _field_accessor('dayofyear', 'doy',
"The ordinal day of the year.")
Expand Down
0