8000 FIX: Parse commas in CSV fields by zachlindsey · Pull Request #3637 · nipy/nipype · GitHub
[go: up one dir, main page]

Skip to content

FIX: Parse commas in CSV fields #3637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
8000
Diff view
Diff view
Prev Previous commit
Update nipype/interfaces/utility/tests/test_csv.py
  • Loading branch information
effigies authored Mar 17, 2024
commit f746c3408fe7e658bbc9cb0084c27540dc6d3a64
2 changes: 1 addition & 1 deletion nipype/interfaces/utility/tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_csvReader(tmpdir):

def test_csvReader_quoted(tmpdir):
header = "files,labels,erosion\n"
lines = ["foo,\"hello, world\",300.1\n"]
lines = ['foo,"hello, world",300.1\n']

name = tmpdir.join("testfile.csv").strpath
with open(name, "w") as fid:
Expand Down
0