Skip to content

Commit 7afd72d

Browse files
committed
Add issue number
1 parent 7cb5b05 commit 7afd72d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.17.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Bug Fixes
6161
~~~~~~~~~
6262

6363
- Bug in ``Categorical`` repr with ``display.width`` of ``None`` in Python 3 (:issue:`10087`)
64-
- Bug causing strings containing an exponent but no decimal to be parsed as ints instead of floats in python csv parser. (:issue:`?????`)
64+
- Bug causing strings containing an exponent but no decimal to be parsed as ints instead of floats in python csv parser. (:issue:`9565`)
6565

6666

6767
- Bug in ``Timestamp``'s' ``microsecond``, ``quarter``, ``dayofyear``, ``week`` and ``daysinmonth`` properties return ``np.int`` type, not built-in ``int``. (:issue:`10050`)

pandas/io/tests/test_parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2294,7 +2294,7 @@ def test_chunk_begins_with_newline_whitespace(self):
22942294
self.assertEqual(len(result), 2)
22952295

22962296
def test_float_parser(self):
2297-
# GH ?????
2297+
# GH 9565
22982298
data = '45e-1,4.5,45.,inf,-inf'
22992299
result = self.read_csv(StringIO(data), header=None)
23002300
expected = pd.DataFrame([[float(s) for s in data.split(',')]])

0 commit comments

Comments
 (0)