summaryrefslogtreecommitdiffstats
path: root/Doc/tools
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-12 20:56:37 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-12 20:56:37 (GMT)
commit793d8478eeb1ca73b95aa6dac97361013d9e8b60 (patch)
treeb0959bf315589dbef2e28b0bc1772b9b9adbf361 /Doc/tools
parente9bd31f98f4dcacb9d1da3f68a57359eb262e833 (diff)
parenta14034872bfe9b5fca07125e7369b8c7030c164b (diff)
downloadcpython-793d8478eeb1ca73b95aa6dac97361013d9e8b60.zip
cpython-793d8478eeb1ca73b95aa6dac97361013d9e8b60.tar.gz
cpython-793d8478eeb1ca73b95aa6dac97361013d9e8b60.tar.bz2
merge with 3.3
Diffstat (limited to 'Doc/tools')
-rw-r--r--Doc/tools/sphinxext/c_annotations.py12
-rw-r--r--Doc/tools/sphinxext/pydoctheme/static/pydoctheme.css4
2 files changed, 8 insertions, 8 deletions
diff --git a/Doc/tools/sphinxext/c_annotations.py b/Doc/tools/sphinxext/c_annotations.py
index c93fb7c..8b5167a 100644
--- a/Doc/tools/sphinxext/c_annotations.py
+++ b/Doc/tools/sphinxext/c_annotations.py
@@ -73,10 +73,10 @@ class Annotations(dict):
par = node.parent
if par['domain'] != 'c':
continue
- if par['notlimited']:
- node.insert(0, nodes.emphasis(' Not part of the stable API.',
- ' Not part of the stable API.',
- classes=['notlimited']))
+ if par['stableabi']:
+ node.insert(0, nodes.emphasis(' Part of the stable ABI.',
+ ' Part of the stable ABI.',
+ classes=['stableabi']))
if par['objtype'] != 'function':
continue
if not par[0].has_key('names') or not par[0]['names']:
@@ -108,10 +108,10 @@ def setup(app):
# monkey-patch C object...
CObject.option_spec = {
'noindex': directives.flag,
- 'notlimited': directives.flag,
+ 'stableabi': directives.flag,
}
old_handle_signature = CObject.handle_signature
def new_handle_signature(self, sig, signode):
- signode.parent['notlimited'] = 'notlimited' in self.options
+ signode.parent['stableabi'] = 'stableabi' in self.options
return old_handle_signature(self, sig, signode)
CObject.handle_signature = new_handle_signature
diff --git a/Doc/tools/sphinxext/pydoctheme/static/pydoctheme.css b/Doc/tools/sphinxext/pydoctheme/static/pydoctheme.css
index 303529b..6d07596 100644
--- a/Doc/tools/sphinxext/pydoctheme/static/pydoctheme.css
+++ b/Doc/tools/sphinxext/pydoctheme/static/pydoctheme.css
@@ -173,6 +173,6 @@ div.footer a:hover {
color: #060;
}
-.notlimited {
- color: #922;
+.stableabi {
+ color: #229;
}