We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When compiling pandas 2 errors prevent the compiled installer from running:
In pandas.core.format (line 155) an unitintialised doc string is used:
doc += docstring_to_string
Easy solution:
if doc: doc += docstring_to_string else: doc = docstring_to_string
In pandas.utils.decorators.py line 98:
docitems = [func.doc if func.doc else '', self.addendum] func.doc = ''.join(docitems) return func
becomes:
def call(self, func): docitems = [func.doc if func.doc else '', self.addendum if self.addendum else ''] func.doc = ''.join(docitems) return func
The text was updated successfully, but these errors were encountered:
This got fixed in #1792
Sorry, something went wrong.
No branches or pull requests
When compiling pandas 2 errors prevent the compiled installer from running:
In pandas.core.format (line 155) an unitintialised doc string is used:
doc += docstring_to_string
Easy solution:
if doc:
doc += docstring_to_string
else:
doc = docstring_to_string
In pandas.utils.decorators.py line 98:
docitems = [func.doc if func.doc else '', self.addendum]
func.doc = ''.join(docitems)
return func
becomes:
def call(self, func):
docitems = [func.doc if func.doc else '', self.addendum if self.addendum else '']
func.doc = ''.join(docitems)
return func
The text was updated successfully, but these errors were encountered: