aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Szorc <gregory.szorc@gmail.com>2012-05-12 20:45:56 +0000
committerGregory Szorc <gregory.szorc@gmail.com>2012-05-12 20:45:56 +0000
commit63419001f0df336655270dc0b757b0da5aa957f0 (patch)
tree873d4481a1ca04ebbc67d68d69831a7e7c2cc7af
parentf1139400e8015b3fc4bbb125df79d9fa1ca18bf6 (diff)
Add Python binding info to release notes
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156721 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index f49f7f8519..acf0e6d150 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -31,6 +31,7 @@ td {
<li><a href="#cxxchanges">C++ Language Changes</a></li>
<li><a href="#objcchanges">Objective-C Language Changes</a></li>
<li><a href="#apichanges">Internal API Changes</a></li>
+ <li><a href="#pythonchanges">Python Binding Changes</a></li>
</ul>
</li>
<li><a href="#knownproblems">Known Problems</a></li>
@@ -156,6 +157,40 @@ should help get you past the largest hurdles of upgrading.
<h4 id="api1">API change 1</h4>
...
+<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = -->
+<h3 id="pythonchanges">Python Binding Changes</h3>
+<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = -->
+
+The following methods have been added:
+<ul>
+ <li>SourceLocation.from_position (static)</li>
+ <li>SourceLocation.__eq__ and SourceLocation.__ne__</li>
+ <li>SourceRange.__eq__ and SourceRange.__ne__</li>
+ <li>Diagnostic.category_number (property)</li>
+ <li>Diagnostic.category_name (property)</li>
+ <li>Diagnostic.option (property)</li>
+ <li>Diagnostic.disable_option (property)</li>
+ <li>CursorKind.is_translation_unit</li>
+ <li>CursorKind.is_preprocessing</li>
+ <li>CursorKind.is_unexposed</li>
+ <li>Cursor.from_location (static)</li>
+ <li>Cursor.underlying_typedef_type (property)</li>
+ <li>Cursor.enum_type (property)</li>
+ <li>Cursor.objc_type_encoding (property)</li>
+ <li>Cursor.hash</li>
+ <li>TypeKind.spelling</li>
+ <li>Type.argument_types</li>
+ <li>Type.element_type (property)</li>
+ <li>Type.element_count (property)</li>
+ <li>Type.is_function_variadic</li>
+ <li>Type.is_pod</li>
+ <li>Type.get_array_element_type</li>
+ <li>Type.get_array_size</li>
+ <li>Type.__eq__ and Type.__ne__</li>
+ <li>File.from_name (static)</li>
+ <li>File.__str__ and File.__repr__</li>
+</ul>
+
<!-- ======================================================================= -->
<h2 id="knownproblems">Significant Known Problems</h2>
<!-- ======================================================================= -->