Browse Source

Update to IronPython 2.7.1

pull/23/head
Matt Ward 14 years ago
parent
commit
11200c3308
  1. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/Chiron.exe
  2. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/DLLs/IronPython.Wpf.dll
  3. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.Modules.dll
  4. 22
      src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.Modules.xml
  5. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.dll
  6. 67
      src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.xml
  7. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Dynamic.dll
  8. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.Metadata.dll
  9. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.Silverlight.dll
  10. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.dll
  11. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/ipy.exe
  12. BIN
      src/AddIns/BackendBindings/Python/RequiredLibraries/ipyw.exe

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/Chiron.exe

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/DLLs/IronPython.Wpf.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.Modules.dll

Binary file not shown.

22
src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.Modules.xml

@ -2177,6 +2177,13 @@ @@ -2177,6 +2177,13 @@
Base class used for iterator wrappers.
</summary>
</member>
<member name="M:IronPython.Modules.PythonCsvModule.GetDialects(IronPython.Runtime.CodeContext)">
<summary>
Returns the dialects from the code context.
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:IronPython.Modules.PythonLocale.LocaleInfo.CreateConventionsDict">
<summary>
Popupates the given directory w/ the locale information from the given
@ -2732,6 +2739,9 @@ @@ -2732,6 +2739,9 @@
<member name="F:IronPython.Modules.CTypes.SimpleTypeKind.VariantBool">
<summary> 'v' </summary>
</member>
<member name="F:IronPython.Modules.CTypes.SimpleTypeKind.BStr">
<summary> 'X' </summary>
</member>
<member name="T:IronPython.Modules.CTypes.CData">
<summary>
Base class for all ctypes interop types.
@ -2820,6 +2830,11 @@ @@ -2820,6 +2830,11 @@
from which the function will be loaded.
</summary>
</member>
<member name="M:IronPython.Modules.CTypes._CFuncPtr.#ctor(System.Int32,System.String)">
<summary>
Creates a new CFuncPtr which calls a COM method.
</summary>
</member>
<member name="M:IronPython.Modules.CTypes._CFuncPtr.#ctor(System.Int32)">
<summary>
Creates a new CFuncPtr with the specfied address.
@ -3012,6 +3027,13 @@ @@ -3012,6 +3027,13 @@
Struct used to store the format and the number of times it should be repeated.
</summary>
</member>
<member name="M:IronPython.Modules.PythonThread.interrupt_main(IronPython.Runtime.CodeContext)">
<summary>
Stops execution of Python or other .NET code on the main thread. If the thread is
blocked in native code the thread will be interrupted after it returns back to Python
or other .NET code.
</summary>
</member>
<member name="T:IronPython.Modules.PythonThread._local.ThreadLocalDictionaryStorage">
<summary>
Provides a dictionary storage implementation whose storage is local to

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.dll

Binary file not shown.

67
src/AddIns/BackendBindings/Python/RequiredLibraries/IronPython.xml

@ -212,6 +212,26 @@ @@ -212,6 +212,26 @@
<summary>Ensures the underlying array is long enough to accomodate the given index</summary>
<returns>The site storage type corresponding to the given index</returns>
</member>
<member name="T:IronPython.Modules._ast.AugLoad">
<summary>
Not used.
</summary>
</member>
<member name="T:IronPython.Modules._ast.AugStore">
<summary>
Not used.
</summary>
</member>
<member name="T:IronPython.Compiler.Ast.PythonWalker">
<summary>
PythonWalker class - The Python AST Walker (default result is true)
</summary>
</member>
<member name="T:IronPython.Modules._ast.Suite">
<summary>
Not an actual node. We don't create this, but it's here for compatibility.
</summary>
</member>
<member name="T:IronPython.Runtime.Binding.IPythonExpandable">
<summary>
Interface used to mark objects which contain a dictionary of custom attributes that shadow
@ -1130,11 +1150,6 @@ @@ -1130,11 +1150,6 @@
Gets the closure tuple from our parent context.
</summary>
</member>
<member name="T:IronPython.Compiler.Ast.PythonWalker">
<summary>
PythonWalker class - The Python AST Walker (default result is true)
</summary>
</member>
<member name="T:IronPython.Compiler.Ast.PythonWalkerNonRecursive">
<summary>
PythonWalkerNonRecursive class - The Python AST Walker (default result is false)
@ -2226,6 +2241,23 @@ @@ -2226,6 +2241,23 @@
string providing this method
</summary>
</member>
<member name="M:IronPython.Runtime.Bytes.ToByteArray">
<summary>
Returns a copy of the internal byte array.
</summary>
<returns>
System.Byte[]
</returns>
</member>
<member name="M:IronPython.Runtime.Bytes.GetUnsafeByteArray">
<summary>
This method returns the underlying byte array directly.
It should be used sparingly!
</summary>
<returns>
System.Byte[]
</returns>
</member>
<member name="T:IronPython.Runtime.ClassMethodAttribute">
<summary>
Marks a method as being a class method. The PythonType which was used to access
@ -2808,6 +2840,11 @@ @@ -2808,6 +2840,11 @@
and sys.setrecursionlimit.
</summary>
</member>
<member name="P:IronPython.Runtime.PythonContext.MainThread">
<summary>
Gets or sets the main thread which should be interupted by thread.interrupt_main
</summary>
</member>
<member name="P:IronPython.Runtime.PythonContext.DefaultEncoding">
<summary>
Gets or sets the default encoding for this system state / engine.
@ -2854,6 +2891,11 @@ @@ -2854,6 +2891,11 @@
happened in a module which has done "import clr".
</summary>
</member>
<member name="M:IronPython.Runtime.PythonTuple.ToArray">
<summary>
Return a copy of this tuple's data array.
</summary>
</member>
<member name="T:IronPython.Runtime.PythonDynamicStackFrame">
<summary>
A DynamicStackFrame which has Python specific data. Currently this
@ -3742,21 +3784,21 @@ @@ -3742,21 +3784,21 @@
<member name="M:IronPython.Hosting.Python.CreateEngine">
<summary>
Creates a new ScriptRuntime and returns the ScriptEngine for IronPython. If
the ScriptRuntime is requierd it can be acquired from the Runtime property
the ScriptRuntime is required it can be acquired from the Runtime property
on the engine.
</summary>
</member>
<member name="M:IronPython.Hosting.Python.CreateEngine(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates a new ScriptRuntime with the specified options and returns the
ScriptEngine for IronPython. If the ScriptRuntime is requierd it can be
ScriptEngine for IronPython. If the ScriptRuntime is required it can be
acquired from the Runtime property on the engine.
</summary>
</member>
<member name="M:IronPython.Hosting.Python.CreateEngine(System.AppDomain)">
<summary>
Creates a new ScriptRuntime and returns the ScriptEngine for IronPython. If
the ScriptRuntime is requierd it can be acquired from the Runtime property
the ScriptRuntime is required it can be acquired from the Runtime property
on the engine.
The remote ScriptRuntime may be manipulated from the local domain but
@ -3766,7 +3808,7 @@ @@ -3766,7 +3808,7 @@
<member name="M:IronPython.Hosting.Python.CreateEngine(System.AppDomain,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates a new ScriptRuntime with the specified options and returns the
ScriptEngine for IronPython. If the ScriptRuntime is requierd it can be
ScriptEngine for IronPython. If the ScriptRuntime is required it can be
acquired from the Runtime property on the engine.
The remote ScriptRuntime may be manipulated from the local domain but
@ -4901,7 +4943,7 @@ @@ -4901,7 +4943,7 @@
<member name="M:IronPython.Modules.Builtin.GetCompilerInheritance(System.Object)">
<summary> Returns true if we should inherit our callers context (true division, etc...), false otherwise </summary>
</member>
<member name="M:IronPython.Modules.Builtin.GetCompilerFlags(System.Object)">
<member name="M:IronPython.Modules.Builtin.GetCompilerFlags(System.Int32)">
<summary> Returns the default compiler flags or the flags the user specified. </summary>
</member>
<member name="M:IronPython.Modules.Builtin.GetExecEvalScopeOptional(IronPython.Runtime.CodeContext,IronPython.Runtime.PythonDictionary,System.Object,System.Boolean)">
@ -6335,11 +6377,6 @@ @@ -6335,11 +6377,6 @@
BigInteger version of AppendBase. Should be kept in sync w/ AppendBase
</summary>
</member>
<member name="M:IronPython.Runtime.PythonTuple.ToArray">
<summary>
Return a copy of this tuple's data array.
</summary>
</member>
<member name="T:IronPython.Runtime.TupleEnumerator">
<summary>
public class to get optimized

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Dynamic.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.Metadata.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.Silverlight.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/Microsoft.Scripting.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/ipy.exe

Binary file not shown.

BIN
src/AddIns/BackendBindings/Python/RequiredLibraries/ipyw.exe

Binary file not shown.
Loading…
Cancel
Save