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
6e73f9e5
Commit
6e73f9e5
authored
Jul 18, 2003
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a few more items
parent
8744f12a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
5 deletions
+22
-5
Doc/whatsnew/whatsnew23.tex
Doc/whatsnew/whatsnew23.tex
+22
-5
No files found.
Doc/whatsnew/whatsnew23.tex
View file @
6e73f9e5
...
...
@@ -12,10 +12,6 @@
\tableofcontents
% To do:
% PYTHONINSPECT
% doctest extensions
% new version of IDLE
% XML-RPC nil extension
% MacOS framework-related changes (section of its own, probably)
%\section{Introduction \label{intro}}
...
...
@@ -1503,6 +1499,14 @@ sequence type. Here's an example that uses a Python list:
(Contributed by Kevin O'Connor.)
\item
The IDLE integrated development environment has been updated
using the code from the IDLEfork project
(
\url
{
http://idlefork.sf.net
}
). The most notable feature is that the
code being developed is now executed in a subprocess, meaning that
there's no longer any need for manual
\code
{
reload()
}
operations.
IDLE's core code has been incorporated into the standard library as the
\module
{
idlelib
}
package.
\item
The
\module
{
imaplib
}
module now supports IMAP over SSL.
(Contributed by Piers Lauder and Tino Lange.)
...
...
@@ -1850,12 +1854,18 @@ For example:
(Contributed by Raymond Hettinger.)
\item
The DOM implementation
in
\module
{
xml.dom.minidom
}
can now generate XML output in a
particular encoding by providing an optional encoding argument to
the
\method
{
toxml()
}
and
\method
{
toprettyxml()
}
methods of DOM nodes.
\item
The
\module
{
xmlrpclib
}
module now supports an XML-RPC extension
for handling nil data values such as Python's
\code
{
None
}
. Nil values
are always supported on unmarshalling an XML-RPC response. To
generate requests containing
\code
{
None
}
, you must supply a true value
for the
\var
{
allow
_
none
}
parameter when creating a
\class
{
Marshaller
}
instance.
\item
The new
\module
{
DocXMLRPCServer
}
module allows writing
self-documenting XML-RPC servers. Run it in demo mode (as a program)
to see it in action. Pointing the Web browser to the RPC server
...
...
@@ -2244,6 +2254,13 @@ Some of the more notable changes are:
\begin
{
itemize
}
\item
If the
\envvar
{
PYTHONINSPECT
}
environment variable is set, the
Python interpreter will enter the interactive prompt after running a
Python program, as if Python had been invoked with the
\programopt
{
-
i
}
option. The environment variable can be set before running the Python
interpreter, or it can be set by the Python program as part of its
execution.
\item
The
\file
{
regrtest.py
}
script now provides a way to allow ``all
resources except
\var
{
foo
}
.'' A resource name passed to the
\programopt
{
-
u
}
option can now be prefixed with a hyphen
...
...
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