Skip to content

Commit dd267b5

Browse files
authored
Merge pull request RustPython#2415 from RustPython/coolreader18/csv-writer
Add csv.writer()
2 parents 18a27ea + 3aafd1a commit dd267b5

File tree

4 files changed

+233
-130
lines changed

4 files changed

+233
-130
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Lib/csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
import re
7-
from _csv import Error, reader, \
7+
from _csv import Error, writer, reader, \
88
QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE, \
99
__doc__
1010

vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ crc = "^1.0.0"
6767
bitflags = "1.2.1"
6868
libc = "0.2"
6969
nix = "0.18"
70-
csv = "1.1.1"
70+
csv-core = "0.1"
7171
paste = "0.1"
7272
base64 = "0.13"
7373
is-macro = "0.1"

0 commit comments

Comments
 (0)