Re: [Ironpython-users] Loading python compiled with clr.CompileModule

2018-04-05 Thread Slide
It would require some additional features be implemented in .NET core to support it. On Thu, Apr 5, 2018 at 9:23 AM Josiah Kiehl wrote: > Got it. Thanks for the answers. I'll hang on to this work for future when > compile module works in .net core. Is that an eventual plan? > > On Thu, Apr 5, 20

Re: [Ironpython-users] IronPython vulnerability patches between versions 2.7.1 and 2.7.7.

2018-01-02 Thread Slide
I am not aware of any security vulnerabilities in IronPython. We haven't had any reported. Our implementation is very different from the C implementation, we use .NET framework classes as the basis for our libraries and language implementation. On Tue, Jan 2, 2018, 11:22 Nikola Luburic < nikola.lu

Re: [Ironpython-users] Error with ironpython and Visual studio 2015

2017-08-01 Thread Slide
Please use the us...@ironpython.groups.io group list in the future. If you are asking about Python Tools for Visual Studio, I would start here: https://www.visualstudio.com/vs/python/ and see if there are some support links. On Tue, Aug 1, 2017 at 2:30 PM shane donnelly < shanedonnelly2...@hotmail

Re: [Ironpython-users] Using compiled(pyc) modules

2017-06-22 Thread Slide
Just as an FYI, please switch over to using us...@ironpython.groups.io. To answer your question, AddReference uses LoadAssemblyByName and LoadAssemblyWithPartialName, so the same rules apply as what the normal .NET framework requires. If you want to use some other extension, you would need to use c

Re: [Ironpython-users] Do Ironpython supports paramiko library?

2017-06-03 Thread Slide
According to the paramiko page, it uses a native C module for crypto, so it won't work with IronPython right out of the box. It would have to be modified to use either the .NET crypto classes, or use pure Python crypto. On Sat, Jun 3, 2017, 08:06 kunal vallecha wrote: > I am making a general pyt

Re: [Ironpython-users] Mailing list move

2017-05-28 Thread Slide
move. On Fri, May 19, 2017 at 9:32 AM Andrew Graham wrote: > Seems like a good idea to me. > > > *From:* Slide > *Sent:* Friday, May 19, 2017 4:00 PM > *To:* ironpython-users@python.org > *Subject:* [Ironpython-users] Mailing list move > > Our current mailing list u

[Ironpython-users] Mailing list move

2017-05-19 Thread Slide
Our current mailing list uses mailman hosted by the Python organization. Mailman leaves a lot to be desired, so I was wondering if people would be open to moving to groups.io. The filtering seems better, archives are easier to navigate, and people can use a web interface to post and read. Does anyo

Re: [Ironpython-users] Ironpython cannot load .Net DLL

2017-04-04 Thread Slide
Please try adding the Dependencies directory to the sys.path. You can do it like this: sys.path.append('path/to/Dependencies') On Tue, Apr 4, 2017, 07:52 Petri Alapiessa wrote: > Hi, > > My company uses .NET and has libraries to application interface. I would > like to use python to invoke appl

[Ironpython-users] Community Meeting

2017-01-23 Thread Slide
I've dropped the ball a bit on getting community meetings scheduled. I would like to have one this week. Does the time we had them before still work? I believe it was 6:00 PM UTC. Please let me know ASAP if that time doesn't work. I would like to do the next one this coming Thursday. Thanks! Alex

[Ironpython-users] Gitter

2016-11-23 Thread Slide
Just to make sure everyone is aware, we moved to https://gitter.im/IronLanguages/ironpython on Gitter so that we could have a room which covered ipy2 and ipy3. Please come hang out and chat! Thanks, Alex ___ Ironpython-users mailing list Ironpython-user

Re: [Ironpython-users] Gitter-chat?

2016-11-15 Thread Slide
Great! Due to the privacy settings for the org level room, I created a new ironpython room that everyone should be able to join. https://gitter.im/IronLanguages/ironpython On Tue, Nov 15, 2016 at 6:39 AM Andrew Graham wrote: > Yup! [image: Smile] I just joined! > > > *From:* Sl

Re: [Ironpython-users] Gitter-chat?

2016-11-15 Thread Slide
Can you see https://gitter.im/IronLanguages/ironpython? On Tue, Nov 15, 2016 at 6:28 AM Andrew Graham wrote: > Sorry, nope! Same blank page I posted earlier with zero rooms and zero > people available. > > Andy Graham > > *From:* Slide > *Sent:* Tuesday, November 15, 2016

Re: [Ironpython-users] Gitter-chat?

2016-11-15 Thread Slide
I tried changing some of the settings for Gitter, please see if you can enter the room now. If not, we will create a new room for everyone. Sorry for the inconvenience! On Tue, Nov 15, 2016 at 6:07 AM Gary Miller wrote: > I see exactly the same thing! > > > Do our names need to be re-registered

Re: [Ironpython-users] How to free memory in ironpython

2016-11-10 Thread Slide
Oh, I missed the utils being passed in, that's roughly the same thing. If you use just "utils" you would want to remove it from the parameter list of the call. On Thu, Nov 10, 2016 at 6:02 AM Djordje Spasic wrote: > Thank you for the reply Alex, > > I apologize for misunderstanding you. > > If I

Re: [Ironpython-users] How to free memory in ironpython

2016-11-10 Thread Slide
That's not what I was talking about. You are calling the method like a static method by using the class name. Yiuve already created an instance above called "utils". On Thu, Nov 10, 2016, 03:37 Djordje Spasic wrote: > Hi Alex, > > > Thank you for the reply. > > If try to instantiate the MapWinGI

Re: [Ironpython-users] How to free memory in ironpython

2016-11-09 Thread Slide
Your python code is different from what the C# code does: utils = MapWinGIS.*UtilsClass*() osm_filePath = "C:\\rome.osm" shps_filePath = "C:\\rome_sph_files" bstrOptions = '--config OSM_USE_CUSTOM_INDEXING NO -skipfailures -f "ESRI Shapefile"' convertToShapefiles_Result = MapWinGIS.UtilsClass.*OGR

Re: [Ironpython-users] Test message

2016-10-26 Thread Slide
Test passed! Welcome to IronPython! We also hang out on https://gitter.im/IronLanguages/main if you want a more live action experience. On Wed, Oct 26, 2016 at 12:57 PM Mark Rivet via Ironpython-users < ironpython-users@python.org> wrote: > Hello everyone, just checking in to make sure the email

[Ironpython-users] IronPython 2.7.7 RC0 Released

2016-10-16 Thread Slide
On behalf of the IronPython Community, I am happy to announce the release of RC0 for IronPython 2.7.7. This release includes the following issue fixes: https://github.com/IronLanguages/main/issues?q=is%3Aissue+label%3A2.7.7+is%3Aclosed Thanks to all of those who contributed to this release. You

[Ironpython-users] Communitty Meetings

2016-09-29 Thread Slide
We've been having meetings every two weeks for some time now, but I think switching to a monthly (first Thursday) format may be better. If you hang out on Gitter, there is active communication happening quite often, so a bi-weekly format is a bit much at this point. Our next meeting will be Thu, Oc

Re: [Ironpython-users] Binding problem with default parameters in public classes

2016-08-30 Thread Slide
I can see this both ways (bug and not a bug), so let's err on the side of bug and see if we can make the behaviour match C#. On Mon, Aug 29, 2016, 23:53 Markus Schaber wrote: > Hi, Slide, > > > > Using a public abstract base class produces the same result: If the > de

Re: [Ironpython-users] IronPython and .Net Core and .Net Standard Library?

2016-08-29 Thread Slide
We are currently working on support for .NET Core. We don't have a working solution yet. On Mon, Aug 29, 2016, 12:18 Michael Mckenna-Mattiaccio wrote: > Hello all, > > I am doing research for a new project at work that will be using > Microsoft's .Net Core and .Net Standard Library for the web a

Re: [Ironpython-users] Binding problem with default parameters in public classes

2016-08-29 Thread Slide
What happens if it's an abstract base class instead of an interface? On Mon, Aug 29, 2016, 03:25 Markus Schaber wrote: > Hi, > > > > Our tests recently caught a strange regression in our application. One can > make existing scripts fail by changing an internal class to public. > > > > The attach

[Ironpython-users] IronPython 2.7.6.3 Released

2016-08-20 Thread Slide
On behalf of the IronPython team, I am happy to announce the release of version 2.7.6.3 final which is the first final release version for the 2.7.6 release stream. You can find the release at: https://github.com/IronLanguages/main/releases/tag/v2.7.6.3 There were several issues which were fixed

Re: [Ironpython-users] Security clearance document for iron Python

2016-08-08 Thread Slide
There are no security tests that take place. So, there is no such document. On Mon, Aug 8, 2016, 20:28 Shyam Pundkar wrote: > Dear iron Python team, > > We are using iron Python 2.7.3. Do you have any document stating that iron > python is tested for security flaws? We need it to obtain security

Re: [Ironpython-users] Getting IronPython 2.7.X on .NET Core

2016-07-28 Thread Slide
See replies inline: On Thu, Jul 28, 2016 at 1:51 PM Mukul Sabharwal wrote: > Hello All, > > Sort of a lurking IronPython user, but I wanted to reach out to the > community on some work I've been wanting to do for a while now - > getting IronPython 2.7.X to run on .NET Core. > This is something

[Ironpython-users] IronRuby

2016-07-14 Thread Slide
Hello Everyone, I am part of the IronPython development team. We are trying to find developers for IronPython, and as part of that we are reworking the repository on GitHub. As part of that we decided to split IronRuby out of the code base into its own repository under the IronLanguages organizati

[Ironpython-users] Issue triage

2016-07-14 Thread Slide
As discussed in the community meeting, I have applied the "untrained" label to all issues in "main". When looking at the issues, please try and reproduce the issue on a recent build of IP if it's possible. Please leave a message in the issue asking for more information if not enough is there. Than

[Ironpython-users] Reminder: Community Meeting TODAY at 6:00PM UTC

2016-07-14 Thread Slide
The URL for the chat is https://gitter.im/IronLanguages/main. Current agenda topics: - IronRuby - What do we want to do here? - Issue disposition - there are currently about 961 issues, with most having been ported from CodePlex. - Release schedule - I would like to do more rolling releases, getti

Re: [Ironpython-users] Install numpy / VS 2010

2016-07-13 Thread Slide
"ImportError: No module named urllib" > > We have work to do, guys. > > > On Wed, Jul 13, 2016 at 11:26 AM, Slide wrote: > >> FYI, the blog has been moved to ironpython.net from blogger. The link to >> the article in question is here: >> http://ironpyth

Re: [Ironpython-users] Install numpy / VS 2010

2016-07-13 Thread Slide
github ( https://github.com/IronLanguages/ironpython.net) Thanks, slide On Wed, Jul 13, 2016 at 10:00 AM Vernon D. Cole wrote: > Lawrence: > Your question has two answers. > > 1) IronPython will run pip. You need to use a longer command line to > prevent PIP from crashing when it

[Ironpython-users] numpy implementation [was Re: Community Meeting]

2016-07-13 Thread Slide
;> support the effort if you need some help. >>> >>> >>> >>> >>> >>> Numpy is a problem because of the amount of C extensions. The best hope, >>> IMHO, is ironclad which marshalls objects around. Pawel and I spent a bit >>> of time

[Ironpython-users] Community Meeting - Thurs, July 14, 2016 @ 6:00PM GMT

2016-07-12 Thread Slide
Based on the responses received, it looks like 6:00PM GMT may be the best middle ground for everyone. The meeting will be on Gitter at https://gitter.im/IronLanguages/main. Please come and participate! Thanks, slide ___ Ironpython-users mailing list

Re: [Ironpython-users] Community Meeting

2016-07-11 Thread Slide
: forum.codesys.com > > *Managing Directors: Dipl.Inf. Dieter Hess, Dipl.Inf. Manfred Werner* | *Trade > register: Kempten HRB 6186* | *Tax ID No.: DE 167014915* > * -- * > > > > *This e-mail may contain confidential and/or privileged information.

[Ironpython-users] Community Meeting

2016-07-10 Thread Slide
o make the meeting as easy to attend as possible for the most amount of people. We won't be able to get everyone, but I would like to get as many as possible. I would like to hold the meeting this Thursday. Thanks! Alex Earl (slide) ___ Ironpytho

Re: [Ironpython-users] IronPython Development Update

2016-07-08 Thread Slide
We plan to have a community meeting next week on Gitter to talk about future progress and what we need to do to get things moving a bit. I've submitted a request to possibly join the .NET Foundation. I'll send out an email with time information. I personally want to thank Jeff for taking over Iron

Re: [Ironpython-users] scope get/set variable in python function

2016-06-24 Thread Slide
Did you do what that email thread said and put global before the variable inside the python function? On Fri, Jun 24, 2016 at 10:49 AM wrote: > Hey there, > > i have a problem which also was discussed here > https://mail.python.org/pipermail/ironpython-users/2012-April/015886.html > > What i mus

Re: [Ironpython-users] Manpower for IronPython

2016-06-20 Thread Slide
Hi Markus, I agree that things have stagnated. I know I have become very busy and I know Jeff has been super busy as well. I'm not sure how to get more people involved. It would be good to get a release out with the memory leak fixes. I am more than willing to do it, but I am not sure I have the c

Re: [Ironpython-users] .net framework update

2016-05-31 Thread Slide
The current release should be compatible with 4.6.1, I use it with that version and it works fine. There is some work being done, albeit slowly. Most of the main devs had life catch up with them to some extent or other On Tue, May 31, 2016, 15:58 Andrea Griffin via Ironpython-users < ironpython-us

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Slide
Grab the source from github.com/IronLanguages/main.git and compile the ironpython solution. On Mon, Feb 15, 2016, 14:59 Didier Bernard wrote: > Thank you for the replies both Andy and Slide. > > @ Slide: > > > I am currently bound to use ironpython 2.7. > > Can

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Slide
You can do this now with ipyc, which should be in the next version. It allows you to set many more things than pyc.py. You could also compile from the 2.7 mainy branch and get it from there. Ipyc replaces pyc.py. Thanks Slide On Mon, Feb 15, 2016, 10:11 Andrew Graham wrote: > You can

[Ironpython-users] New 2.7.x release?

2016-02-03 Thread Slide
With the updates that were made to reduce memory leaks, is there a plan to do a new release of IP 2.7 line? I would love to have the improvements (I know I can build myself, but corporate yada yada) in a release. Regards, slide ___ Ironpython-users

Re: [Ironpython-users] Calling a method on the Interop COM object

2016-01-30 Thread Slide
Out parameters are returned from the method as part of a tuple (if there is a return value already it will be in the tulle as the second item) On Sat, Jan 30, 2016, 07:38 Djordje Spasic via Ironpython-users < ironpython-users@python.org> wrote: > Thank you Stéphane!! > > That solved the problem!

Re: [Ironpython-users] Can IronPython be used without installation?

2015-12-17 Thread Slide
Yes, I do this with my application. I just copy the dll's and exe's to the directory and it works fine. You will to put the Lib directory there too. On Thu, Dec 17, 2015 at 9:44 AM John Majerle wrote: > I have a C# application that uses IronPython scripting. Is there a way to > do this without

Re: [Ironpython-users] debug C# IronPython app?

2015-12-16 Thread Slide
ohnston > *Sent:* Wednesday, December 16, 2015 6:42 PM > *To:* ironpython-users@python.org > *Subject:* Re: [Ironpython-users] debug C# IronPython app? > > Hello, > > Here is the Python code. > > The code works as expected most of the time. > > Regards, > Wil

Re: [Ironpython-users] Build errors

2015-12-16 Thread Slide
It's been pushed. On Wed, Dec 16, 2015 at 4:17 PM Bill Tutt wrote: > Bah! Apologies for not including the project file update in the PR. :( > > Thanks for pushing the fix (when you do), Slide. > > Bill > > On Wed, Dec 16, 2015 at 2:01 PM, Slide wrote: > >> I&

Re: [Ironpython-users] debug C# IronPython app?

2015-12-16 Thread Slide
gt; Projects\TextRazor\pos.py"); > > Sincerely, > William Johnston > > > > *From:* Slide > *Sent:* Wednesday, December 16, 2015 5:37 PM > *To:* William Johnston ; > ironpython-users@python.org > *Subject:* Re: [Ironpython-users] debug C# IronPython app? > Forgi

Re: [Ironpython-users] debug C# IronPython app?

2015-12-16 Thread Slide
catch (Exception ex) > { > throw new Exception(ex.Message); > } > return ret; > } > > > tuple1 returns an empty string. > > Thanks, > William Johnston > > > *From:* Slide > *Sent:* Tuesday, December 15, 2015 5:13 PM > *To:* William

Re: [Ironpython-users] Build errors

2015-12-16 Thread Slide
I'll update the project file and push. On Wed, Dec 16, 2015, 12:01 Jeff Hardy wrote: > Probably a side effect of https://github.com/IronLanguages/main/pull/1254, > which added the file but not to the project (which I missed on CR - d'oh). > > - Jeff > On Tue, Dec 1

[Ironpython-users] Build errors

2015-12-15 Thread Slide
I've been getting the following build errors on clean clones from Git on both Windows and Linux. There is a file FormattingHelper.cs, but it is not part of the project. Runtime/Operations/IntOps.cs(458,34): error CS0103: The name `FormattingHelper' does not exist in the current context Run

Re: [Ironpython-users] debug C# IronPython app?

2015-12-15 Thread Slide
Microsoft isn't really involved with IronPython anymore, it's a completely open source project with no developers from MS really spending time on it (Dino does help out). Providing some code might allow someone on this list to help out. slide On Tue, Dec 15, 2015 at 1:53 PM Willia

Re: [Ironpython-users] CodePlex

2015-12-15 Thread Slide
https://ironpython.codeplex.com/workitem/32335 is the one I am trying to get all the info for. On Tue, Dec 15, 2015, 08:55 Jeff Hardy wrote: > I can. What are you looking for? > > - Jeff > > On Mon, Dec 14, 2015 at 7:11 PM, Slide wrote: > >> Can anyone access the

[Ironpython-users] CodePlex

2015-12-14 Thread Slide
Can anyone access the old CodePlex site? I was looking for an old issue that wasn't migrated to GH. ___ Ironpython-users mailing list Ironpython-users@python.org https://mail.python.org/mailman/listinfo/ironpython-users

Re: [Ironpython-users] Microsoft.Scripting.Metadata is used for?

2015-12-11 Thread Slide
There are a few things that I think we could probably get rid of (Chiron anyone?!), I am not sure if there is a plan to do that in 2.7, but hopefully for 3.x :-) On Fri, Dec 11, 2015 at 4:13 PM Stéphane Lozier wrote: > I'm just wondering what Microsoft.Scripting.Metadata is used for. > > As far

Re: [Ironpython-users] Accessing Windows 8.1 Runtime API

2015-11-02 Thread Slide
s that are required. On Sun, Nov 1, 2015 at 10:07 AM Slide wrote: > Its most likely because the WinRT stuff is done via Winmd files, which I > don't think are currently supported by the clr module for loading and > referencing. I haven't looked at the code, but that is my guess. It &g

[Ironpython-users] Attracting new developers

2015-11-01 Thread Slide
It seems like there has been a general lack of development on IronPython for the past little while. I know I have been super busy and I'm sure other developers have as well. Does anyone have any ideas on attracting new developers to start working on 1) fixing issues in the 2.7 line 2) get IP3.0 out

Re: [Ironpython-users] Accessing Windows 8.1 Runtime API

2015-11-01 Thread Slide
Its most likely because the WinRT stuff is done via Winmd files, which I don't think are currently supported by the clr module for loading and referencing. I haven't looked at the code, but that is my guess. It probably something that needs to be looked into. On Sun, Nov 1, 2015, 09:28 Wayne Keena

Re: [Ironpython-users] PythonTuple.MakeTuple

2015-08-25 Thread Slide
Hi Markus, Thank you for your excellent reply to my question. I was able to just use the constructor, for some reason I thought it wasn't working, when in reality it was working and I was just adding the incorrect items to the tuple. I appreciate your response! Regards. Slide On Mon, A

[Ironpython-users] PythonTuple.MakeTuple

2015-08-20 Thread Slide
Can anyone tell me why this method is internal?! ___ Ironpython-users mailing list Ironpython-users@python.org https://mail.python.org/mailman/listinfo/ironpython-users

Re: [Ironpython-users] Problem with the "in" operator for

2015-08-11 Thread Slide
The normal method for "attaching" things on GitHub is by creating a Gist with the contents and then referencing that Gist in the issue. On Tue, Aug 11, 2015 at 1:36 PM Markus Schaber wrote: > Hi, Jeff, > > > -Ursprüngliche Nachricht- > > Von: Jeff Hardy [mailto:jdha...@gmail.com] > > Ges

Re: [Ironpython-users] Error running standalone exe using clrtype.py if IronPython is not installed

2015-05-04 Thread Slide
The other option is to use ctypes. This is more like CPython. On Mon, May 4, 2015 at 8:15 AM Markus Schaber wrote: > Hi, > > Von: Sebastián Magrí > > Well that's actually my fault for not checking out that first (wrt > clrtype). Is there any other well tested/standard option to do what clrtype >

Re: [Ironpython-users] Error running standalone exe using clrtype.py if IronPython is not installed

2015-04-24 Thread Slide
How are you creating your exe? On Fri, Apr 24, 2015, 11:55 Sebastián Magrí wrote: > Hi! > > I'm using clrtype.py to do some user32.dll integration and I'm creating a > standalone .exe which uses this integration. > > When I run the .exe on a machine with IronPython installed, it works > flawlesl

Re: [Ironpython-users] IronPython: Import DLL library

2015-03-12 Thread Slide
> > Thanks for your reply. > > > > How to check the library is native C++ or not? > > > > If it is a native C++ then, is there any work around for the same. > > > > Thanks and Regards, > > Hemanth M B > > @9010054054 > > > > *From:* Slid

Re: [Ironpython-users] IronPython: Import DLL library

2015-03-12 Thread Slide
Do you mean the library is CLI/C++, or is it native C++? If native C++, it won't work with IronPython currently. On Thu, Mar 12, 2015 at 4:11 AM Hemanth M B wrote: > HI All, > > > > > > I am trying to add reference and import BMAPIa.DLL library using CLR. But > it is throwing an error message.

Re: [Ironpython-users] ShowDialog Hangs

2015-02-25 Thread Slide
You need to make sure the thread was started as an STAThread I believe, otherwise the common windows controls (OpenFileDialog being one of them) won't work correctly. On Wed Feb 25 2015 at 2:02:32 AM Andrew Ayre wrote: > I am sure I am making a silly mistake somewhere. > > I have IronPython embe

Re: [Ironpython-users] time.sleep slowdown

2015-01-20 Thread Slide
for > arbitrary length waits of several hundred milliseconds or more but is > useless for accurate timing and doesn’t work properly for short timeouts. > > Andy Graham > > *From:* Slide > *Sent:* Monday, January 19, 2015 10:27 PM > *To:* ironpython-users@python.org > *Subjec

[Ironpython-users] time.sleep slowdown

2015-01-19 Thread Slide
ith a call to Thread.Sleep, so I am not sure why this would slow things down so much. Has anyone seen anything like this, and have a way to overcome it? Thanks, slide ___ Ironpython-users mailing list Ironpython-users@python.org https://mail.python.o

Re: [Ironpython-users] Issues Migrated to GitHub

2014-12-18 Thread Slide
CodePlex has no API for updating issues that I know of, so this would be a big task. I'm not sure it's worth it. I think we've done more than most groups migrating from CodePlex to Github by actually migrating issues. Most other groups start fresh and people have to reopen issues. On Thu Dec 18 20

Re: [Ironpython-users] converting issues from codeplex to github

2014-12-08 Thread Slide
ccount to do the actual import; I have the credentials if > you need them. > > - Jeff > > > On Mon, Dec 8, 2014 at 7:03 PM, Slide wrote: > >> The issues have been imported to >> https://github.com/slide/ipimport8/issues. >> >> These issues are the on

Re: [Ironpython-users] converting issues from codeplex to github

2014-12-08 Thread Slide
The issues have been imported to https://github.com/slide/ipimport8/issues. These issues are the ones that have more than 1 vote or have been updated since Mar 25, 2013 (I don't know why I picked that date). It is only issues that are not Resolved or Closed in CodeProject. I remove

Re: [Ironpython-users] converting issues from codeplex to github

2014-12-08 Thread Slide
d and is more aligned with "bug > in version". Would it make more sense to not set any milestone and > use value as a label instead? > > > > Cheers > --pawel > > > On Mon, Dec 8, 2014 at 4:51 AM, Slide wrote: > > This is the most recent run from a couple

Re: [Ironpython-users] converting issues from codeplex to github

2014-12-07 Thread Slide
This is the most recent run from a couple months ago or so. https://github.com/slide/ipimport7/issues On Sun, Dec 7, 2014, 13:10 Jeff Hardy wrote: > On Sun, Dec 7, 2014 at 10:37 AM, Pawel Jasinski > wrote: > >> hi, >> >> when will the conversion of issues from co

Re: [Ironpython-users] abc.py 0.12% of time errors with "SystemError: Handle is not initialized."

2014-11-24 Thread Slide
If you are running with ipy.exe, can you add -X:ShowClrExceptions -X:ExceptionDetail to your command line before posting the stacktrace? On Mon Nov 24 2014 at 6:54:12 PM Thinh Pham wrote: > I can confirm that this exception happened to me as well. Cannot reproduce > it on any consistent basis.

Re: [Ironpython-users] IronPython 2.7.5 RC 1 Released

2014-11-21 Thread Slide
isher policy files are used to > so that applications don't have to be recompiled, but recompiling is > strongly recommended. > > A huge thanks goes out to Pawel Jasinski > <https://github.com/paweljasinski>, who contributed most of the changes > in this release. Thanks is a

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-05 Thread Slide
That was my feeling as well, just wanted to clarify. I've been looking at IronClad, but the build setup is odd and I haven't had much time. On Wed Nov 05 2014 at 5:43:48 AM Jeff Hardy wrote: > On Mon, Nov 3, 2014 at 3:20 PM, Slide wrote: > > This brings up an interesting qu

Re: [Ironpython-users] Integrating a WPF IPy program with C#

2014-11-03 Thread Slide
It might help if you provide some code in a gist or something. Without that, its going to be difficult for anyone to help. On Mon, Nov 3, 2014 at 6:32 AM, Love, Matthew wrote: > Hi IronPython users, > > > > I’ve created a C# program that runs an IronPython script. > > The script contains a GUI

Re: [Ironpython-users] using IronPython with pycrypto

2014-11-03 Thread Slide
This brings up an interesting question. How much of a pure .NET implementation do we want to keep in IronPython? Do we want to try and pull something like IronClad into IronPython to provide compatibility, or implement the important modules in .NET? On Mon, Nov 3, 2014 at 5:12 AM, Jeff Hardy wrot

Re: [Ironpython-users] Bytecode Skeleton Implementation

2014-10-31 Thread Slide
Sure, that shouldn't be a problem, right now it's 90% of them :-) I'll add some info. On Oct 31, 2014 3:23 AM, "Jeff Hardy" wrote: > On Sun, Oct 26, 2014 at 11:53 PM, Slide wrote: > > I pushed a branch with a skeleton implementation (very minimal) of > by

[Ironpython-users] Bytecode Skeleton Implementation

2014-10-26 Thread Slide
I pushed a branch with a skeleton implementation (very minimal) of bytecode support. The __hello__ and __phello__ modules are implemented and work (they are built-in to CPython). Please take a look at [1] and let me know if you have any feedback. Thanks, slide 1 - https://github.com

Re: [Ironpython-users] Compiling and Deploying IronPython Dependencies to DLL

2014-10-13 Thread Slide
Can you give an example of the file hierarchy for the Azure Python SDK? On Mon, Oct 13, 2014 at 10:33 AM, Jeff Hardy wrote: > pyc.py is the route you want to go, although I'll have to look up the > exact syntax to use (Alex might know, I cc'd him). > > Also, does the Azure Python SDK work with I

Re: [Ironpython-users] b64encode(bz2.compress()) throws exception.

2014-08-27 Thread Slide
Can you file an issue on ironpython.codeplex.com? On Wed, Aug 27, 2014 at 7:53 AM, Hernán Foffani wrote: > Hi, > This works on CPython but on IronPython throws an exception in > base64.b64encode. > > from __future__ import print_function > > import cPickle > import bz2 > import base64 > > def s

Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Slide
Can you fork on github and provide a merge request? On Mon, Aug 18, 2014 at 1:50 PM, Daniel Fernandez < fernandez_d...@hotmail.com> wrote: > HI All, > > Thanks Alex that was a duh moment for me there. > > I see the issue the code use the as the operator trying to convert to > IList. I simple che

Re: [Ironpython-users] bytearray comparison failure

2014-08-18 Thread Slide
ByteArray.cs the Equals method. On Mon, Aug 18, 2014 at 11:50 AM, Daniel Fernandez < fernandez_d...@hotmail.com> wrote: > Hi All, > > I ran into an issue comparing bytearray with a string value. I created an > issue 35470 on codeplex. The code snippet that can reproduce the issue is > x = bytear

Re: [Ironpython-users] bytearray encoding issue

2014-08-18 Thread Slide
I agree, I think we need to determine the best way to implement this so we match CPython more. I think if we just patch the stdlib though, we may run into other cases in the future that we would need to fix, but if we determine how to make it work inside IronPython, it would be better. On Mon, Au

Re: [Ironpython-users] problem incorporating namespace into Xaml

2014-07-24 Thread Slide
Just so you are aware FePy was the name of a side project that was a set of enhancements to IronPython. If you are looking for a shorter form of IronPython, IP is generally the best way to go so there is no confusion. On Thu, Jul 24, 2014 at 4:45 PM, John Trinder wrote: > I'm new to FePy and a

Re: [Ironpython-users] py_compile.compile() constant error (unable to generate a .pyc file)

2014-07-21 Thread Slide
Oh, looking at the source, it's a debug option only, not for production use. On Mon, Jul 21, 2014 at 5:51 AM, John Trinder wrote: > Nope - nothing under -X remotely like it! In fact I can't see any options > for saving anything. > > [Re] Should be an option -X:SaveAssemblies or something like t

Re: [Ironpython-users] SAXReaderNotAvailable: No parsers found

2014-07-15 Thread Slide
I believe that tries to use expat under the covers and IronPython doesn't support expat. It's a native module in CPython, and there is no implementation in IronPython. You can try the implementation from FePy, but it is very old, so it may not run out of the box, you may need to modify it to get it

[Ironpython-users] WI 31764 - Memory Leak

2014-07-14 Thread Slide
Markus, hopefully this reaches you. In regards to https://ironpython.codeplex.com/workitem/31764, I was wondering how you got the heap dump like you posted. I'm looking into this issue because I'm having some memory leak type issues as well and would like to try and fix this. Than

Re: [Ironpython-users] Memory Leak and Lightweight Scopes

2014-07-09 Thread Slide
Dino, Did you ever have a chance to look into this many moons ago, and if not, any tips on how to go about figuring it out? I'm pretty sure I am running into something similar. Thanks, Alex On Wed, Nov 16, 2011 at 10:54 AM, Dino Viehland wrote: > settrace() debugging should be perfectly fine

[Ironpython-users] IRC

2014-06-25 Thread Slide
Is anyone interested in having more realtime type discussions via IRC? Any particular network people hang out on? -- Website: http://earl-of-code.com ___ Ironpython-users mailing list Ironpython-users@python.org https://mail.python.org/mailman/listinfo/

Re: [Ironpython-users] Pyvisa Compatibility

2014-06-24 Thread Slide
Does pyvisa use a native extension anywhere? If so, then it will not work with IronPython. On Mon, Jun 23, 2014 at 2:46 PM, Daniel Hsu wrote: > Hi All, > > Has there been any progress recently on Pyvisa compatibility? I'm trying > to connect to several machines using Pyvisa but it doesn't recog

Re: [Ironpython-users] IronPython SQLite interface

2014-05-09 Thread Slide
Ah, I guess it would help if I actually went and looked at what was being used :-) On Fri, May 9, 2014 at 6:48 AM, Jeff Hardy wrote: > On Fri, May 9, 2014 at 2:41 PM, Slide wrote: > > Would it be useful to pick up something like this: > > https://code.google.com/p/csharp-sqlit

Re: [Ironpython-users] IronPython SQLite interface

2014-05-09 Thread Slide
Would it be useful to pick up something like this: https://code.google.com/p/csharp-sqlite/ ? On Fri, May 9, 2014 at 5:59 AM, Jeff Hardy wrote: > On Fri, May 9, 2014 at 12:01 PM, Doug Blank wrote: > > On Fri, May 9, 2014 at 4:42 AM, Jeff Hardy wrote: > >> > >> On Thu, May 8, 2014 at 5:32 PM,

Re: [Ironpython-users] IronPython 2.7.5 Bug List

2014-04-29 Thread Slide
Is this the PLW that is mentioned? https://bitbucket.org/vinay.sajip/pylauncher/src On Mon, Apr 28, 2014 at 4:17 PM, Jeff Hardy wrote: > 2.7.5 Beta 2 is a bit behind schedule because there are a bunch of > things I'd like to see fixed before releasing it. The list is at > http://bit.ly/1gbwn7O;

Re: [Ironpython-users] Item 34263 in 2.7.5?

2014-04-09 Thread Slide
To follow up on my own email :-) I am thinking of looking at the byte code interpreter again. It looked like a lot of fun :-) On Wed, Apr 9, 2014 at 3:35 PM, Slide wrote: > I'm hoping to have some more time to work on IP this year. > > > On Wed, Apr 9, 2014 at 3:30 PM,

Re: [Ironpython-users] Item 34263 in 2.7.5?

2014-04-09 Thread Slide
I'm hoping to have some more time to work on IP this year. On Wed, Apr 9, 2014 at 3:30 PM, Jeff Hardy wrote: > On Wed, Apr 9, 2014 at 8:42 PM, John Fullmer wrote: > > What is the planned timeline if any? > > This year, hopefully. However, my timelines often seem to be overly > optimistic. :| >

Re: [Ironpython-users] CodePlex Issues (Was: IronPython 3 Update)

2014-03-25 Thread Slide
Here's the actual import with that filter: [5] - https://github.com/slide/ipimport5/issues On Tue, Mar 25, 2014 at 8:07 AM, Slide wrote: > Ok, I didn't do the actual import, but there are 236 issues that would be > migrated. > > > On Tue, Mar 25, 2014 at 6:53 AM, J

Re: [Ironpython-users] CodePlex Issues (Was: IronPython 3 Update)

2014-03-25 Thread Slide
Ok, I didn't do the actual import, but there are 236 issues that would be migrated. On Tue, Mar 25, 2014 at 6:53 AM, Jeff Hardy wrote: > On Tue, Mar 25, 2014 at 1:28 PM, Slide wrote: > > Here are four repos that show the different options > > > > [1] - Open issues

Re: [Ironpython-users] CodePlex Issues (Was: IronPython 3 Update)

2014-03-25 Thread Slide
hmmm, I didn't write my filtering that way, but I can probably add it... On Tue, Mar 25, 2014 at 6:53 AM, Jeff Hardy wrote: > On Tue, Mar 25, 2014 at 1:28 PM, Slide wrote: > > Here are four repos that show the different options > > > > [1] - Open issues from C

Re: [Ironpython-users] CodePlex Issues (Was: IronPython 3 Update)

2014-03-25 Thread Slide
tes >= 1 and created/updated since 25/03/2013 - 110 issues migrated Let me know what you think. slide 1 - https://github.com/slide/ipopenonly/issues 2 - https://github.com/slide/ipvotes/issues 3 - https://github.com/slide/iponeyear/issues 4 - https://github.com/slide/ipvotesandtime/issues

Re: [Ironpython-users] CodePlex Issues (Was: IronPython 3 Update)

2014-03-21 Thread Slide
FYI, this is an example of what my tool does for the issues from CodePlex https://github.com/slide/ip-test2/issues I haven't implemented the vote or date filtering yet, and this is not all of the issues from CodePlex, just some of them. On Fri, Mar 21, 2014 at 6:33 AM, Slide wrote: >

  1   2   3   >