-
-
Notifications
You must be signed in to change notification settings - Fork 18k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEPR: Positional arguments in to_sql except name (#54397)
* Updated method header and whatsnew file * Updated unit tests to use keyword argument for con parameter. * Updating unit tests and implementation. * Updated documentation and unit tests. * Updating documentation and fixing unit tests. * Updating documentation. * Updating documentation and fixing failing unit tests. * Updating documentation and unit tests. * Updating implementation based on reviewer feedback. * Updating implementation to allow 'self' to be a positional arg. * Deprecating con positional arg in new test case. * Fixing typo * Fixing typo
- Loading branch information
Showing
6 changed files
with
127 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
It might make sense to allow
con
as positional as well?(certainly given that it is a required argument, quite self-descriptive (eg not a boolean argument), and that this pattern is widely used in our own docs)