Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9c0d5eaa
Commit
9c0d5eaa
authored
Mar 20, 2011
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Markup fixes for #7198 patch.
parent
f453debb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Doc/library/csv.rst
Doc/library/csv.rst
+3
-3
No files found.
Doc/library/csv.rst
View file @
9c0d5eaa
...
@@ -79,8 +79,8 @@ The :mod:`csv` module defines the following functions:
...
@@ -79,8 +79,8 @@ The :mod:`csv` module defines the following functions:
Return a writer object responsible for converting the user's data into delimited
Return a writer object responsible for converting the user's data into delimited
strings on the given file-like object. *csvfile* can be any object with a
strings on the given file-like object. *csvfile* can be any object with a
:func:`write` method. If
csvfile
is a file object, it should be opened with
:func:`write` method. If
*csvfile*
is a file object, it should be opened with
newline=''
[1]_. An optional *dialect*
``newline=''``
[1]_. An optional *dialect*
parameter can be given which is used to define a set of parameters specific to a
parameter can be given which is used to define a set of parameters specific to a
particular CSV dialect. It may be an instance of a subclass of the
particular CSV dialect. It may be an instance of a subclass of the
:class:`Dialect` class or one of the strings returned by the
:class:`Dialect` class or one of the strings returned by the
...
@@ -466,5 +466,5 @@ done::
...
@@ -466,5 +466,5 @@ done::
.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields
.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields
will not be interpreted correctly, and on platforms that use ``\r\n`` linendings
will not be interpreted correctly, and on platforms that use ``\r\n`` linendings
on write an extra `
\\r
` will be added. It should always be safe to specify
on write an extra `
`\r`
` will be added. It should always be safe to specify
``newline=''``, since the csv module does its own (universal) newline handling.
``newline=''``, since the csv module does its own (universal) newline handling.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment