Skip to content

BUG: DataFrame.resample is changing thBUG: DataFrame.resample is changing the index type to MultiIndex when the dataframe is empty (pandas-dev#61174) * BUG: DataFramee index type to MultiIndex when the dataframe is empty (pandas-dev#61174) * BUG: DataFrame solved #61176

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions doc/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

import docutils
import docutils.parsers.rst
import pandas

DOC_PATH = os.path.dirname(os.path.abspath(__file__))
SOURCE_PATH = os.path.join(DOC_PATH, "source")
Expand Down Expand Up @@ -83,11 +84,11 @@ def _process_single_doc(self, single_doc):
if os.path.exists(os.path.join(SOURCE_PATH, single_doc)):
return single_doc
else:
raise FileNotFoundError(f"File {single_doc} not found")
raise FileNotFoundError(f"File {single_doc} not f ound")

elif single_doc.startswith("pandas."):
try:
obj = pandas # noqa: F821
obj = pandas # noqa: F821
for name in single_doc.split("."):
obj = getattr(obj, name)
except AttributeError as err:
Expand Down
350 changes: 0 additions & 350 deletions pandas/__init__.py

This file was deleted.

Loading
Loading