Re: [Ironpython-users] Gitter-chat?

2016-11-15 Thread Andrew Graham
Yup! I just joined! From: Slide Sent: Tuesday, November 15, 2016 1:31 PM To: Andrew Graham ; Gary Miller ; ironpython-users@python.org Subject: Re: [Ironpython-users] Gitter-chat? Can you see https://gitter.im/IronLanguages/ironpython? On Tue, Nov 15, 2016 at 6:28 AM Andrew Graham wrote

Re: [Ironpython-users] Gitter-chat?

2016-11-15 Thread Andrew Graham
Sorry, nope! Same blank page I posted earlier with zero rooms and zero people available. Andy Graham From: Slide Sent: Tuesday, November 15, 2016 1:24 PM To: Gary Miller ; Andrew Graham ; ironpython-users@python.org Subject: Re: [Ironpython-users] Gitter-chat? I tried changing some of the

[Ironpython-users] Gitter-chat?

2016-11-14 Thread Andrew Graham
Is it just me? The link to Gitter-Chat on the IronLanguages/main page at https://github.com/IronLanguages/main Shows a link at the bottom to Gitter-Chat https://gitter.im/IronLanguages That leads to a blank page with no rooms. Regards to all and grateful thanks to the few for resuscitating

Re: [Ironpython-users] IronPython Development Update

2016-07-08 Thread Andrew Graham
Jeff, I second the thanks for your part work on keeping IronPython alive. I’m really glad to see that it still has a future under new leadership. My thanks to them as well. Best regards to all Andy Graham From: Jeff Hardy Sent: Friday, July 08, 2016 6:01 PM To: ironpython-users@python.org S

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

2016-02-16 Thread Andrew Graham
troubleshooting it. Andy Graham From: Didier Bernard Sent: Tuesday, February 16, 2016 10:08 AM To: Andrew Graham ; ironpython-users@python.org Subject: Re: [Ironpython-users] Changing the version information of ironpython .dll assembly Thank you Andrew. I am not a programmer so sometimes obvious

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

2016-02-16 Thread Andrew Graham
eModule(String location, CompilerParameters opt ions) at ILMerging.ILMerge.Merge() at ILMerging.ILMerge.Main(String[] args) Thank you. Kind regards, Didier From: Slide Sent: Monday, February 15, 2016 8:

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

2016-02-15 Thread Andrew Graham
You can use ilmerge to change it after compilation http://stackoverflow.com/questions/398170/change-assembly-version-in-a-compiled-net-assembly ilmerge mycode.dll /ver:1.2.3.4 /out:mycode.dll ILMerge is available via NuGet in Visual Studio or from the Microsoft Download center http://www.micros

Re: [Ironpython-users] struggling with Intellisense and GAC

2015-07-09 Thread Andrew Graham
Is it Intellisense in Python Tools for Visual Studio you are referring to? If so my experience is that to obtain Intellisense you don’t need your DLLs in the GAC. To see my custom DLL in my project I do four things. 1) Add the DLL or EXE Assemblies to References in your IronPython project (I’m

Re: [Ironpython-users] issue with chardtect.detect with unicode type

2015-06-04 Thread Andrew Graham
Yes, the unicode type in IronPython is is the same as string by design, ‘unicode == str’ will return True From: Daniel Fernandez Sent: Thursday, June 04, 2015 12:17 PM To: ironpython-users@python.org Subject: [Ironpython-users] issue with chardtect.detect with unicode type Hi All, I'm play

Re: [Ironpython-users] Fail to load setupapi.dll library in ironpython

2015-04-15 Thread Andrew Graham
setupapi.dll is an unmanaged library and is not directly callable from IronPython. If you really need it you will need to write a managed C# (or VB) wrapper assembly that accesses the required functions in the dll using P/Invoke (DllImport) and call into your wrapper from IronPython. Regards A

Re: [Ironpython-users] Fwd: weakref random "SystemError" and "ValueError" exception (affecting _weakrefset.py and abc.py)

2015-04-13 Thread Andrew Graham
I confirm the same problem, except that it happens more often for me, about 50 to 60 times each time I run the test. It smells like some sort of “unsynchronised acess by different threads to an object problem ”. One (very) hacky way round it until the real cause is established is to modify __

Re: [Ironpython-users] Open Source Windows Forms GUI REPL and Debugger

2015-03-19 Thread Andrew Graham
u can authoritatively assure me otherwise. Best regards Andy Graham -Original Message- From: Markus Schaber Sent: Thursday, March 19, 2015 6:16 PM To: Andrew Graham ; ironpython-users@python.org Subject: AW: [Ironpython-users] Open Source Windows Forms GUI REPL and Debugger Hi, Andrew,

[Ironpython-users] Open Source Windows Forms GUI REPL and Debugger

2015-03-19 Thread Andrew Graham
Just in case anyone is interested I have posted my Windows Forms based MIT licensed Open Source REPL replacement for ipy.exe and its associated debugger at http://1drv.ms/1I21dvl The zip file is a Visual Studio solution, though the essential REPL and debugger files are pre-built and ready to

Re: [Ironpython-users] ShowDialog Hangs

2015-02-25 Thread Andrew Graham
Not really strange, expected behaviour in fact. The Form is drawn OK but there is no message loop running on the thread to pump messages to it so it will be unresponsive and sit there until the thread exits. A modal dialog, or Form shown modally, tries to pump the message queue itself, that is

Re: [Ironpython-users] time.sleep slowdown

2015-01-20 Thread Andrew Graham
You don’t say how long you are trying to sleep for or why you want to sleep, but every time you call Sleep you abandon the rest of your timeslice. If you are trying to sleep for a few milliseconds you may be suprised by how long you actually sleep as your thread has to be rescheduled after the s

Re: [Ironpython-users] GUI Toolkits

2014-12-11 Thread Andrew Graham
wrapper for it to include as a component in the Basic language IDE that I maintain. Andy -Original Message- From: Jeff Hardy Sent: Thursday, December 11, 2014 1:11 PM To: Andrew Graham Cc: ironpython-users@python.org Subject: Re: [Ironpython-users] GUI Toolkits On Wed, Dec 10, 2014

Re: [Ironpython-users] GUI Toolkits

2014-12-10 Thread Andrew Graham
To: Andrew Graham Cc: ironpython-users@python.org Subject: Re: [Ironpython-users] GUI Toolkits On Fri, Dec 5, 2014 at 6:33 PM, Andrew Graham wrote: > Jeff Hardy posted on the 3rd December >> P.S. I'd also kill for an open-source embeddable REPL and an embeddable >> editor (w

Re: [Ironpython-users] GUI Toolkits

2014-12-06 Thread Andrew Graham
I have just joined and I haven't got the hang of how to use this mailing list so please excuse my ignorance. Jeff Hardy posted on the 3rd December P.S. I'd also kill for an open-source embeddable REPL and an embeddable editor (with debugging for extra points). I don't know if it is what you