https://github.com/python/cpython/commit/58ce131037ecb34d506a613f21993cde2056f628
commit: 58ce131037ecb34d506a613f21993cde2056f628
branch: main
author: sobolevn <[email protected]>
committer: sobolevn <[email protected]>
date: 2024-08-29T11:12:37+03:00
summary:

gh-123446: Fix empty function names in `TypeError`s in `_csv` module (#123462)

files:
M Modules/_csv.c

diff --git a/Modules/_csv.c b/Modules/_csv.c
index 3e2ddbd833a651..a623ea449da779 100644
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -1072,7 +1072,7 @@ csv_reader(PyObject *module, PyObject *args, PyObject 
*keyword_args)
         return NULL;
     }
 
-    if (!PyArg_UnpackTuple(args, "_csv.reader", 1, 2, &iterator, &dialect)) {
+    if (!PyArg_UnpackTuple(args, "reader", 1, 2, &iterator, &dialect)) {
         Py_DECREF(self);
         return NULL;
     }
@@ -1519,7 +1519,7 @@ csv_writer(PyObject *module, PyObject *args, PyObject 
*keyword_args)
 
     self->error_obj = Py_NewRef(module_state->error_obj);
 
-    if (!PyArg_UnpackTuple(args, "_csv.writer", 1, 2, &output_file, &dialect)) 
{
+    if (!PyArg_UnpackTuple(args, "writer", 1, 2, &output_file, &dialect)) {
         Py_DECREF(self);
         return NULL;
     }
@@ -1571,7 +1571,7 @@ csv_register_dialect(PyObject *module, PyObject *args, 
PyObject *kwargs)
     _csvstate *module_state = get_csv_state(module);
     PyObject *dialect;
 
-    if (!PyArg_UnpackTuple(args, "_csv.register_dialect", 1, 2, &name_obj, 
&dialect_obj))
+    if (!PyArg_UnpackTuple(args, "register_dialect", 1, 2, &name_obj, 
&dialect_obj))
         return NULL;
     if (!PyUnicode_Check(name_obj)) {
         PyErr_SetString(PyExc_TypeError,

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to