index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_csv.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)
chgnrdv
2023-05-07
1
-2/+2
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-67230: add quoting rules to csv module (GH-29469)
Skip Montanaro
2023-04-12
1
-1/+15
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99466)
Victor Stinner
2022-11-14
1
-6/+3
*
gh-65496: Correct wording on csv's skipinitialspace argument (#96170)
Stanley
2022-10-07
1
-4/+4
*
gh-89653: Use int type for Unicode kind (#92704)
Victor Stinner
2022-05-13
1
-4/+4
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-3/+3
*
bpo-40676: Use Argument Clinic for csv (where possible) (GH-20200)
Shantanu
2022-04-16
1
-37/+63
*
bpo-46541: Remove unnecessary Py_VISIT (GH-31608)
Dong-hee Na
2022-02-28
1
-1/+0
*
bpo-46541: Remove usage of _Py_IDENTIFIER from csv module (GH-31372)
Dong-hee Na
2022-02-16
1
-4/+10
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+2
*
bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833)
Dong-hee Na
2021-10-11
1
-9/+4
*
bpo-27580: Add support of null characters in the csv module. (GH-28808)
Serhiy Storchaka
2021-10-09
1
-33/+30
*
bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (GH-28832)
Dong-hee Na
2021-10-09
1
-0/+6
*
bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)
Dong-hee Na
2021-10-09
1
-8/+38
*
Fix typos in the Modules directory (GH-28761)
Christian Clauss
2021-10-07
1
-1/+1
*
bpo-44630: Fix assertion errors in csv module (GH-27127)
T. Wouters
2021-07-13
1
-4/+8
*
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland
2021-06-17
1
-3/+6
*
bpo-44116: Add GC support to _csv heap types (GH-26074)
Erlend Egeberg Aasland
2021-05-12
1
-30/+32
*
bpo-44089: Allow subclassing of ``csv.Error`` (GH-26008)
Ken Jin
2021-05-12
1
-1/+1
*
bpo-14935: Remove static state from the _csv module (GH-23224)
Petr Viktorin
2020-12-15
1
-241/+303
*
bpo-12178: Fix escaping of escapechar in csv.writer() (GH-13710)
Berker Peksag
2020-09-20
1
-0/+3
*
bpo-26407: Do not mask errors in csv. (GH-20536)
Serhiy Storchaka
2020-06-22
1
-8/+8
*
Remove usesless function from csv module (GH-20762)
Dong-hee Na
2020-06-09
1
-8/+2
*
bpo-40876: Clarify error message in the csv module (GH-20653)
Ram Rachum
2020-06-05
1
-1/+1
*
Remove unused ReaderObject_Check macro (#20614)
Dong-hee Na
2020-06-03
1
-2/+0
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
1
-4/+4
*
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na
2020-03-24
1
-6/+2
*
bpo-39968: Convert extension modules' macros of get_module_state() to inline ...
Hai Shi
2020-03-16
1
-14/+20
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-3/+3
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-3/+3
*
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
1
-1/+4
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
Fix name of '\0'. (GH-14222)
Benjamin Peterson
2019-06-19
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-6/+6
*
Change WriterObj.writeline to WriterObj.write (GH-12344)
RĂ©mi Lapeyre
2019-05-14
1
-10/+12
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-3/+7
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-5/+5
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-3/+3
*
bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...
Sergey Fedoseev
2018-08-16
1
-36/+15
*
bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440)
Serhiy Storchaka
2018-07-26
1
-15/+16
*
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
oldk
2018-02-02
1
-4/+4
*
bpo-32255: Always quote a single empty field when write into a CSV file. (#4769)
Licht Takeuchi
2017-12-12
1
-1/+1
*
Use NULL rather than 0. (#778)
Serhiy Storchaka
2017-03-23
1
-8/+8
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-8/+4
*
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-1/+1
*
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
[next]