We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7971351 commit e394592Copy full SHA for e394592
pandas/core/config_init.py
@@ -897,3 +897,13 @@ def register_converter_cb(key: str) -> None:
897
"(at which point this option will be deprecated).",
898
validator=is_one_of_factory([True, False]),
899
)
900
+
901
+ cf.register_option(
902
+ "usecols_use_order",
903
+ False,
904
+ ": bool\n "
905
+ "Whether usecols parameter will use order of input when "
906
+ "making a DataFrame. \n This feature will be default in pandas 3.0"
907
+ "(at which point this option will be deprecated).",
908
+ validator=is_one_of_factory([True, False]),
909
+ )
0 commit comments