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
71432f1d
Commit
71432f1d
authored
Jul 05, 2004
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various edits
parent
3bf85f1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
Doc/whatsnew/whatsnew24.tex
Doc/whatsnew/whatsnew24.tex
+9
-10
No files found.
Doc/whatsnew/whatsnew24.tex
View file @
71432f1d
...
...
@@ -838,8 +838,7 @@ tranmitting multiple XML-RPC calls in a single HTTP operation.
The
\module
{
cookielib
}
library supports client-side handling for HTTP
cookies, just as the
\module
{
Cookie
}
provides server-side cookie
support in CGI scripts. This library manages cookies in a way similar
to web browsers. Cookies are stored in cookie jars; the library
support in CGI scripts. Cookies are stored in cookie jars; the library
transparently stores cookies offered by the web server in the cookie
jar, and fetches the cookie from the jar when connecting to the
server. Similar to web browsers, policy objects control whether
...
...
@@ -874,16 +873,16 @@ Changes to Python's build process and to the C API include:
during the look-up process.
\item
A new method flag,
\constant
{
METH
_
COEXISTS
}
, allows a function
defined in slots to co-exist with a
PyCFunction having the same name.
This can halve the access to time to
a method such as
defined in slots to co-exist with a
\ctype
{
PyCFunction
}
having the
same name. This can halve the access time for
a method such as
\method
{
set.
__
contains
__
()
}
.
\item
Python can now be built with additional profiling for the interpreter
itself
, useful if you're work
ing on the Python core.
itself
. This is intended for people develop
ing on the Python core.
Providing
\longprogramopt
{
--enable-profiling
}
to the
\program
{
configure
}
script will let you profile the interpreter with
\program
{
gprof
}
, and providing the
\longprogramopt
{
--with-tsc
}
switch
enables profiling using the Pentium's Time-Stamp-Counter.
enables profiling using the Pentium's Time-Stamp-Counter
register
.
\item
The
\ctype
{
tracebackobject
}
type has been renamed to
\ctype
{
PyTracebackObject
}
.
...
...
@@ -939,12 +938,12 @@ changes to your code:
\item
\function
{
dircache.listdir()
}
now passes exceptions to the caller
instead of returning empty lists.
\item
\function
{
LexicalHandler.startDTD()
}
used to receive public and
system ID in the wrong order. This has been corrected; applications
\item
\function
{
LexicalHandler.startDTD()
}
used to receive
the
public and
system ID
s
in the wrong order. This has been corrected; applications
relying on the wrong order need to be fixed.
\item
\function
{
fcntl.ioctl
}
now warns if the
mutate arg is omitted
and relevant.
\item
\function
{
fcntl.ioctl
}
now warns if the
\var
{
mutate
}
a
rgument is omitted a
nd relevant.
\end{itemize}
...
...
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