Skip to content

Commit 6cdfbce

Browse files
committed
Fix default value for quoting= parameter (could not be understood by python's help())
1 parent 4347db1 commit 6cdfbce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c/frame/to_csv.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static PKArgs args_to_csv(
4545
{"path", "quoting", "hex", "verbose", "_strategy"},
4646
"to_csv",
4747

48-
R"(to_csv(self, path=None, *, quoting=csv.QUOTE_MINIMAL, hex=False,
48+
R"(to_csv(self, path=None, *, quoting="minimal", hex=False,
4949
verbose=False, _strategy="auto")
5050
--
5151

0 commit comments

Comments
 (0)