File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 489
489
- Bug in :meth: `Styler.background_gradient ` not able to work with dtype ``Int64 `` (:issue: `28869 `)
490
490
- Bug in :meth: `DataFrame.to_clipboard ` which did not work reliably in ipython (:issue: `22707 `)
491
491
- Bug in :func: `read_json ` where default encoding was not set to ``utf-8 `` (:issue: `29565 `)
492
+ - Bug in :class: `PythonParser ` where str and bytes were being mixed when dealing with the decimal field (:issue: `29650 `)
492
493
-
493
494
494
495
Plotting
Original file line number Diff line number Diff line change @@ -488,7 +488,7 @@ def _read(filepath_or_buffer: FilePathOrBuffer, kwds):
488
488
"cache_dates" : True ,
489
489
"thousands" : None ,
490
490
"comment" : None ,
491
- "decimal" : b "." ,
491
+ "decimal" : "." ,
492
492
# 'engine': 'c',
493
493
"parse_dates" : False ,
494
494
"keep_date_col" : False ,
@@ -568,7 +568,7 @@ def parser_f(
568
568
# Quoting, Compression, and File Format
569
569
compression = "infer" ,
570
570
thousands = None ,
571
- decimal = b "." ,
571
+ decimal : str = "." ,
572
572
lineterminator = None ,
573
573
quotechar = '"' ,
574
574
quoting = csv .QUOTE_MINIMAL ,
You can’t perform that action at this time.
0 commit comments