File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Next release
2323* FIX: Output prefix in SPM Normalize with modulation (https://github.com/nipy/nipype/pull/1023)
2424* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
2525* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
26- * ENH: Added csvReader() utility
26+ * ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
2727
2828Release 0.10.0 (October 10, 2014)
2929============
Original file line number Diff line number Diff line change @@ -491,20 +491,20 @@ class CSVReader(BaseInterface):
491491 Examples
492492 --------
493493
494- >>> reader = cv. CSVReader()
495- >>> reader.inputs.in_file = 'noHeader.csv'
496- >>> out = reader.run()
494+ >>> reader = CSVReader() # doctest: +SKIP
495+ >>> reader.inputs.in_file = 'noHeader.csv' # doctest: +SKIP
496+ >>> out = reader.run() # doctest: +SKIP
497497 >>> out.outputs.column_0 == ['foo', 'bar', 'baz'] # doctest: +SKIP
498498 True
499499 >>> out.outputs.column_1 == ['hello', 'world', 'goodbye'] # doctest: +SKIP
500500 True
501501 >>> out.outputs.column_2 == ['300.1', '5', '0.3'] # doctest: +SKIP
502502 True
503503
504- >>> reader = cv. CSVReader()
505- >>> reader.inputs.in_file = 'header.csv'
506- >>> reader.inputs.header = True
507- >>> out = reader.run()
504+ >>> reader = CSVReader() # doctest: +SKIP
505+ >>> reader.inputs.in_file = 'header.csv' # doctest: +SKIP
506+ >>> reader.inputs.header = True # doctest: +SKIP
507+ >>> out = reader.run() # doctest: +SKIP
508508 >>> out.outputs.files == ['foo', 'bar', 'baz'] # doctest: +SKIP
509509 True
510510 >>> out.outputs.labels == ['hello', 'world', 'goodbye'] # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments