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
c34c26ba
Commit
c34c26ba
authored
Sep 20, 2002
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
brief help file for people editing Misc/NEWS
parent
18c466f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
+60
-0
Misc/NEWS.help
Misc/NEWS.help
+60
-0
No files found.
Misc/NEWS.help
0 → 100644
View file @
c34c26ba
-*- text -*-
If you edited Misc/NEWS before it was converted to ReST format skimming this
file should help make the transition a bit easier. For full details about
Docutils and ReST, go to the Docutils website:
http://docutils.sourceforge.net/
To process Misc/NEWS using Docutils, you'll need the latest docutils
snapshot:
http://docutils.sf.net/docutils-snapshot.tgz
David Goodger made a change to the allowable structure of internal
references which greatly simplified initial conversion of the file.
The changes required fell into the following categories:
* The top-level "What's New" section headers changed to:
What's New in Python 2.3 alpha 1?
=================================
*XXX Release date: DD-MMM-2002 XXX*
* Subsections are underlined with a single row of hyphens:
Type/class unification and new-style classes
--------------------------------------------
* Places where "balanced" single quotes were used were changed to use
apostrophes as both the opening and closing quote (`string' -> 'string').
* In a few places asterisks needed to be escaped which would otherwise have
been interpreted as beginning blocks of italic or bold text, e.g.:
- The type of tp_free has been changed from "void (*)(PyObject \*)"
to "void (*)(void \*)".
Note that only the asterisks preceded by whitespace needed to be escaped.
* One instance of a word ending with an underscore needed to be quoted
("PyCmp_" became "``PyCmp_``").
* One table was converted to ReST form (search Misc/NEWS for "New codecs"
for this example).
* A few places where chunks of code or indented text were displayed needed
to be properly introduced (preceding paragraph terminated by "::" and the
chunk of code or text indented w.r.t. the paragraph). For example:
- Note that PyLong_AsDouble can fail! This has always been true,
but no callers checked for it. It's more likely to fail now,
because overflow errors are properly detected now. The proper way
to check: ::
double x = PyLong_AsDouble(some_long_object);
if (x == -1.0 && PyErr_Occurred()) {
/* The conversion failed. */
}
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