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
952f196a
Commit
952f196a
authored
Apr 18, 2006
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add item
parent
816a1622
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
Doc/whatsnew/whatsnew25.tex
Doc/whatsnew/whatsnew25.tex
+12
-2
No files found.
Doc/whatsnew/whatsnew25.tex
View file @
952f196a
...
...
@@ -3,6 +3,7 @@
% $Id$
% The easy_install stuff
% Describe the pkgutil module
% Stateful codec changes
% Fix XXX comments
% Count up the patches and bugs
...
...
@@ -1173,8 +1174,6 @@ the SVN logs for all the details.
% the cPickle module no longer accepts the deprecated None option in the
% args tuple returned by __reduce__().
% XXX csv module improvements
% XXX datetime.datetime() now has a strptime class method which can be used to
% create datetime object using a string and format.
...
...
@@ -1240,6 +1239,17 @@ which is also written in C but doesn't match the \module{profile}
module's interface, will continue to be maintained in future versions
of Python. (Contributed by Armin Rigo.)
\item
The
\module
{
csv
}
module, which parses files in
comma-separated value format, received several enhancements and a
number of bugfixes. You can now set the maximum size in bytes of a
field by calling the
\method
{
csv.field
_
size
_
limit(
\var
{
new
_
limit
}
)
}
function; omitting the
\var
{
new
_
limit
}
argument will return the
currently-set limit. The
\class
{
reader
}
class now has a
\member
{
line
_
num
}
attribute that counts the number of physical lines
read from the source; records can span multiple physical lines, so
\member
{
line
_
num
}
is not the same as the number of records read.
(Contributed by Skip Montanaro and Andrew McNamara.)
\item
In the
\module
{
gc
}
module, the new
\function
{
get
_
count()
}
function
returns a 3-tuple containing the current collection counts for the
three GC generations. This is accounting information for the garbage
...
...
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