From 8fb62db3e125bfdc525faed05f4207829beb0326 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Sat, 13 Nov 2021 20:59:11 -0800 Subject: [PATCH] COMPAT: Python 3.9.8 Please see bpo 20028. https://github.com/python/cpython/pull/28705. This shows up in nightlies, but I have no way to test this. It should show up pretty soon in regular CI. Can someone with with the perms on the MacPython repo please trigger the nightlies manually to see if that fixes the builds? Thanks. --- pandas/tests/io/parser/test_quoting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/parser/test_quoting.py b/pandas/tests/io/parser/test_quoting.py index 6995965467d05..456dd049d2f4a 100644 --- a/pandas/tests/io/parser/test_quoting.py +++ b/pandas/tests/io/parser/test_quoting.py @@ -24,7 +24,7 @@ {"quotechar": None, "quoting": csv.QUOTE_MINIMAL}, "quotechar must be set if quoting enabled", ), - ({"quotechar": 2}, '"quotechar" must be string, not int'), + ({"quotechar": 2}, '"quotechar" must be string( or None)?, not int'), ], ) def test_bad_quote_char(all_parsers, kwargs, msg):