1-10 of 11 < Previous Next >
1 vote

Create PowerShell extension in Python

This would be a good demo of the technology.

id# 1988 | Planned Release: None | Last Updated: Apr 9 at 8:54 PM  by CurtHagenlocher
1 vote

Create explicit wrapper constructor

It should be possible to wrap an existing IronPython (dynamic) object with the static class. This could be done as a static function T FromObject(object obj, bool suppressCheck) which tests to mak...

id# 1315 | Planned Release: None | Last Updated: Feb 13 at 11:02 PM  by CurtHagenlocher
1 vote

Recognize Pythonic default parameters

A Python method declaration like this: def DoThis(self, a, b=1, c=2): should be translated into three methods on the wrapper: void DoThis(a) void DoThis(a, b) void DoThis(a, b, c)

id# 1314 | Planned Release: None | Last Updated: Feb 13 at 10:51 PM  by CurtHagenlocher
1 vote

Allow constructor to have parameters

The current wrapper assumes that the Python __init__ function is parameterless. It should not.

id# 1313 | Planned Release: None | Last Updated: Feb 13 at 10:46 PM  by CurtHagenlocher
1 vote
closed

Expose Python properties on generated class

Wrap Python properties (at least the "get" and "set" functions) as properties on the generated class

id# 1119 | Planned Release: None | Last Updated: Feb 9 at 12:30 AM  by CurtHagenlocher
1 vote

Expose interfaces on generated code

Identify CLR interfaces that are bases of the class being wrapped but are not part of the IronPython implementation. Expose those interfaces on the wrapper and generate appropriate methods that fo...

id# 1125 | Planned Release: None | Last Updated: Feb 7 at 3:54 PM  by CurtHagenlocher
1 vote

Scan multiple .py files

Allow scanning of multiple .py files in a single pass by specifying multiple file names using wild cards on the command line.

id# 1124 | Planned Release: None | Last Updated: Feb 7 at 3:48 PM  by CurtHagenlocher
1 vote

Embed .py files as resources

Allow .py files to be embedded in the assembly as resources. Modify code generation to allow loading of modules from resources. This would allow an IronPython library or application to be deliver...

id# 1123 | Planned Release: None | Last Updated: Feb 7 at 3:46 PM  by CurtHagenlocher
1 vote

Support IronPython 1.1

Have two code generators and pick between them using a command-line switch.

id# 1122 | Planned Release: None | Last Updated: Feb 7 at 3:43 PM  by CurtHagenlocher
1 vote

Allow EXE generation

Use a command-line switch to choose between /target:exe, /target:winexe or /target:library. For exe and winexe, exactly one class being wrapped must define a classmethod or staticmethod named "Mai...

id# 1121 | Planned Release: None | Last Updated: Feb 7 at 3:42 PM  by CurtHagenlocher

Configure View

Search
Sort by Id
Release
Title
Updated
Votes
1-10 of 11 < Previous 1 2 Next >
Updating...