From barton at bcdesignswell.com Sat Apr 2 11:46:03 2011 From: barton at bcdesignswell.com (Barton) Date: Sat, 02 Apr 2011 02:46:03 -0700 Subject: [Python.NET] PyTables working with python not working with python.net In-Reply-To: References: Message-ID: <4D96F05B.4010507@bcdesignswell.com> Being a novice embedder (especially back when I wrote the pyimport.cs module in the Python.EmbeddingTest project), I chose to do things a little differently: At the time, I felt like I wanted access to the entire engine. I still can't decide if calling methods on PyObject is more clumsy than the object[] arg passing arrangement with strongly typed object or not. [SetUp] public void SetUp() { PythonEngine.Initialize(); gs = PythonEngine.AcquireLock(); //string here = Environment.CurrentDirectory; // trunk\pythonnet\src\embed_tests\bin\Debug /* * Append the tests directory to sys.path * using reflection to circumvent the private modifiers placed on most Runtime methods. */ string s = @"..\..\..\tests"; Type RTClass = typeof(Runtime.Runtime); /* pyStrPtr = PyString_FromString(s); */ MethodInfo PyString_FromString = RTClass.GetMethod("PyString_FromString", BindingFlags.NonPublic | BindingFlags.Static); object[] funcArgs = new object[1]; funcArgs[0] = s; IntPtr pyStrPtr = (IntPtr)PyString_FromString.Invoke(null, funcArgs); /* SysDotPath = sys.path */ MethodInfo PySys_GetObject = RTClass.GetMethod("PySys_GetObject", BindingFlags.NonPublic | BindingFlags.Static); funcArgs[0] = "path"; IntPtr SysDotPath = (IntPtr)PySys_GetObject.Invoke(null, funcArgs); /* SysDotPath.append(*pyStrPtr) */ MethodInfo PyList_Append = RTClass.GetMethod("PyList_Append", BindingFlags.NonPublic | BindingFlags.Static); funcArgs = new object[2]; funcArgs[0] = SysDotPath; funcArgs[1] = pyStrPtr; int r = (int)PyList_Append.Invoke(null, funcArgs); } [TearDown] public void TearDown() { PythonEngine.ReleaseLock(gs); PythonEngine.Shutdown(); } [Test] public void TestDottedName() { PyObject module; module = PythonEngine.ImportModule("PyImportTest.test.one"); Assert.IsNotNull(module, ">>> import PyImportTest.test.one # FAILED"); } Personally, I don't see the benefit of marking most of the Runtime as private. On 03/25/2011 01:14 PM, Guillaume Pichard wrote: > Hello, > > I am trying to use pytables with python.net . It is > working great with python alone. What I am doing with python.net > is: > PythonEngine.Initialize(); > PythonEngine.AcquireLock(); > > PyObject sys = PythonEngine.ImportModule("sys"); > PyObject path = sys.GetAttr("path"); > PyObject append = path.GetAttr("append"); > PyObject[] a = new PyObject[1]; > a[0] = new PyString("C:\\Python27\\Lib\\site-packages"); > append.Invoke(a); > > PyObject pyTables = PythonEngine.ImportModule("tables"); > if (pyTables == null) > throw new PythonException(); > > The exception message is "ImportError : DLL load failed: Specified > module not found." > > What could be the differences between python.net and > python ? Is there any specific path to add ? > > Thanks a lot, > Guillaume. > > > > _________________________________________________ > Python.NET mailing list - PythonDotNet at python.org > http://mail.python.org/mailman/listinfo/pythondotnet From lo.maximo73 at gmail.com Thu Apr 14 16:26:21 2011 From: lo.maximo73 at gmail.com (ElMariachi) Date: Thu, 14 Apr 2011 07:26:21 -0700 (PDT) Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed Message-ID: <31397569.post@talk.nabble.com> Has anyone encountered this error before? What DLL is being searched for and not found? Any help is greatly appreciated! >>> import numpy Traceback (most recent call last): File "", line 1, in File "C:\Python27\lib\site-packages\numpy\__init__.py", line 142, in import add_newdocs File "C:\Python27\lib\site-packages\numpy\add_newdocs.py", line 9, in from numpy.lib import add_newdoc File "C:\Python27\lib\site-packages\numpy\lib\__init__.py", line 4, in from type_check import * File "C:\Python27\lib\site-packages\numpy\lib\type_check.py", line 8, in import numpy.core.numeric as _nx File "C:\Python27\lib\site-packages\numpy\core\__init__.py", line 5, in import multiarray ImportError: DLL load failed: The specified module could not be found. -- View this message in context: http://old.nabble.com/Using-numpy-matplotlib---DLL-Load-Failed-tp31397569p31397569.html Sent from the Python - pythondotnet mailing list archive at Nabble.com. From barton at BCDesignsWell.com Sat Apr 16 22:00:56 2011 From: barton at BCDesignsWell.com (Barton) Date: Sat, 16 Apr 2011 13:00:56 -0700 Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: <31397569.post@talk.nabble.com> References: <31397569.post@talk.nabble.com> Message-ID: <4DA9F578.5060403@BCDesignsWell.com> I have had tons of issues with python 2.7 and manifest issues that did not occur in 2.6. A short term solution would be to start python from the standard (cpython) python.exe, import your extension libraries that don't play nicely first, then import clr (relying on the late-bound import hook). On 4/14/2011 7:26 AM, ElMariachi wrote: > Has anyone encountered this error before? What DLL is being searched for and > not found? Any help is greatly appreciated! > > >>>> import numpy > Traceback (most recent call last): > File "", line 1, in > File "C:\Python27\lib\site-packages\numpy\__init__.py", line 142, in > > import add_newdocs > File "C:\Python27\lib\site-packages\numpy\add_newdocs.py", line 9, in > > > from numpy.lib import add_newdoc > File "C:\Python27\lib\site-packages\numpy\lib\__init__.py", line 4, in > from type_check import * > File "C:\Python27\lib\site-packages\numpy\lib\type_check.py", line 8, in > le> > import numpy.core.numeric as _nx > File "C:\Python27\lib\site-packages\numpy\core\__init__.py", line 5, in > e> > import multiarray > ImportError: DLL load failed: The specified module could not be found. From barton at BCDesignsWell.com Sun Apr 17 20:35:37 2011 From: barton at BCDesignsWell.com (Barton) Date: Sun, 17 Apr 2011 11:35:37 -0700 Subject: [Python.NET] Searchable Achive In-Reply-To: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> References: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> Message-ID: <4DAB32F9.1090105@BCDesignsWell.com> Nabble works really well. For the moment, still on old.nabble: http://old.nabble.com/Python---pythondotnet-f2969.html On 3/28/2011 10:44 AM, Brad Byrd wrote: > (Also, are the archives of the list searchable somewhere? I just saw clickable-by-month archives, not searchable.) > > Thanks, > > Brad... > > _________________________________________________ > Python.NET mailing list - PythonDotNet at python.org > http://mail.python.org/mailman/listinfo/pythondotnet > From gr at componic.co.nz Sun Apr 17 21:42:24 2011 From: gr at componic.co.nz (Glenn Ramsey) Date: Mon, 18 Apr 2011 07:42:24 +1200 Subject: [Python.NET] Searchable Achive In-Reply-To: <4DAB32F9.1090105@BCDesignsWell.com> References: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> <4DAB32F9.1090105@BCDesignsWell.com> Message-ID: <4DAB42A0.1070103@componic.co.nz> You can also search with Google using site:mail.python.org/pipermail/pythondotnet/ On 18/04/11 06:35, Barton wrote: > Nabble works really well. For the moment, still on old.nabble: > http://old.nabble.com/Python---pythondotnet-f2969.html > > > On 3/28/2011 10:44 AM, Brad Byrd wrote: >> (Also, are the archives of the list searchable somewhere? I just saw >> clickable-by-month archives, not searchable.) >> >> Thanks, >> >> Brad... From lo.maximo73 at gmail.com Tue Apr 19 15:22:55 2011 From: lo.maximo73 at gmail.com (ElMariachi) Date: Tue, 19 Apr 2011 06:22:55 -0700 (PDT) Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: <4DA9F578.5060403@BCDesignsWell.com> References: <31397569.post@talk.nabble.com> <4DA9F578.5060403@BCDesignsWell.com> Message-ID: <31432493.post@talk.nabble.com> I've tried just this - starting up pythonnet.exe and importing pylab, or matplotlib, or numpy as the first import prior to clr. I still get the DLL not found errors. Have you found any other solution? Barton wrote: > > I have had tons of issues with python 2.7 and manifest issues that did > not occur in 2.6. > A short term solution would be to start python from the standard > (cpython) python.exe, import your extension libraries that don't play > nicely first, then import clr (relying on the late-bound import hook). > > On 4/14/2011 7:26 AM, ElMariachi wrote: >> Has anyone encountered this error before? What DLL is being searched for >> and >> not found? Any help is greatly appreciated! >> >> >>>>> import numpy >> Traceback (most recent call last): >> File "", line 1, in >> File "C:\Python27\lib\site-packages\numpy\__init__.py", line 142, in >> >> import add_newdocs >> File "C:\Python27\lib\site-packages\numpy\add_newdocs.py", line 9, in >> >> >> from numpy.lib import add_newdoc >> File "C:\Python27\lib\site-packages\numpy\lib\__init__.py", line 4, in >> > from type_check import * >> File "C:\Python27\lib\site-packages\numpy\lib\type_check.py", line 8, >> in >> > le> >> import numpy.core.numeric as _nx >> File "C:\Python27\lib\site-packages\numpy\core\__init__.py", line 5, >> in >> > e> >> import multiarray >> ImportError: DLL load failed: The specified module could not be found. > _________________________________________________ > Python.NET mailing list - PythonDotNet at python.org > http://mail.python.org/mailman/listinfo/pythondotnet > > -- View this message in context: http://old.nabble.com/Using-numpy-matplotlib---DLL-Load-Failed-tp31397569p31432493.html Sent from the Python - pythondotnet mailing list archive at Nabble.com. From btribble at ea.com Tue Apr 19 20:53:00 2011 From: btribble at ea.com (Tribble, Brett) Date: Tue, 19 Apr 2011 11:53:00 -0700 Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: <31432493.post@talk.nabble.com> References: <31397569.post@talk.nabble.com> <4DA9F578.5060403@BCDesignsWell.com> <31432493.post@talk.nabble.com> Message-ID: Import multiarray first as well. Numpy is doing an import in the __init__ according to what I see here, unless I'm wrong, which is also likely. Lather, rinse, repeat for any additional modules that fail to load. This bug has plagued my pythondotnet usage since day 1... -----Original Message----- From: pythondotnet-bounces+btribble=ea.com at python.org [mailto:pythondotnet-bounces+btribble=ea.com at python.org] On Behalf Of ElMariachi Sent: Tuesday, April 19, 2011 6:23 AM To: pythondotnet at python.org Subject: Re: [Python.NET] Using numpy/matplotlib - DLL Load Failed I've tried just this - starting up pythonnet.exe and importing pylab, or matplotlib, or numpy as the first import prior to clr. I still get the DLL not found errors. Have you found any other solution? Barton wrote: > > I have had tons of issues with python 2.7 and manifest issues that did > not occur in 2.6. > A short term solution would be to start python from the standard > (cpython) python.exe, import your extension libraries that don't play > nicely first, then import clr (relying on the late-bound import hook). > > On 4/14/2011 7:26 AM, ElMariachi wrote: >> Has anyone encountered this error before? What DLL is being searched for >> and >> not found? Any help is greatly appreciated! >> >> >>>>> import numpy >> Traceback (most recent call last): >> File "", line 1, in >> File "C:\Python27\lib\site-packages\numpy\__init__.py", line 142, in >> >> import add_newdocs >> File "C:\Python27\lib\site-packages\numpy\add_newdocs.py", line 9, in >> >> >> from numpy.lib import add_newdoc >> File "C:\Python27\lib\site-packages\numpy\lib\__init__.py", line 4, in >> > from type_check import * >> File "C:\Python27\lib\site-packages\numpy\lib\type_check.py", line 8, >> in >> > le> >> import numpy.core.numeric as _nx >> File "C:\Python27\lib\site-packages\numpy\core\__init__.py", line 5, >> in >> > e> >> import multiarray >> ImportError: DLL load failed: The specified module could not be found. > _________________________________________________ > Python.NET mailing list - PythonDotNet at python.org > http://mail.python.org/mailman/listinfo/pythondotnet > > -- View this message in context: http://old.nabble.com/Using-numpy-matplotlib---DLL-Load-Failed-tp31397569p31432493.html Sent from the Python - pythondotnet mailing list archive at Nabble.com. _________________________________________________ Python.NET mailing list - PythonDotNet at python.org http://mail.python.org/mailman/listinfo/pythondotnet From lo.maximo73 at gmail.com Wed Apr 20 22:46:15 2011 From: lo.maximo73 at gmail.com (ElMariachi) Date: Wed, 20 Apr 2011 13:46:15 -0700 (PDT) Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: References: <31397569.post@talk.nabble.com> <4DA9F578.5060403@BCDesignsWell.com> <31432493.post@talk.nabble.com> Message-ID: <31443742.post@talk.nabble.com> I have tried, as you mentioned, importing multiarray first. It is a module declared in numpy.core (the filename is "multiarray.pyd") though I keep getting the same error. Any idea what else I might try? >>> from numpy.core import multiarray Traceback (most recent call last): File "", line 1, in File "c:\python27\lib\site-packages\numpy\__init__.py", line 142, in import add_newdocs File "c:\python27\lib\site-packages\numpy\add_newdocs.py", line 9, in from numpy.lib import add_newdoc File "c:\python27\lib\site-packages\numpy\lib\__init__.py", line 4, in from type_check import * File "c:\python27\lib\site-packages\numpy\lib\type_check.py", line 8, in import numpy.core.numeric as _nx File "c:\python27\lib\site-packages\numpy\core\__init__.py", line 5, in import multiarray ImportError: DLL load failed: The specified module could not be found. Tribble, Brett wrote: > > Import multiarray first as well. Numpy is doing an import in the __init__ > according to what I see here, unless I'm wrong, which is also likely. > Lather, rinse, repeat for any additional modules that fail to load. > > This bug has plagued my pythondotnet usage since day 1... > -- View this message in context: http://old.nabble.com/Using-numpy-matplotlib---DLL-Load-Failed-tp31397569p31443742.html Sent from the Python - pythondotnet mailing list archive at Nabble.com. From btribble at ea.com Wed Apr 20 23:17:02 2011 From: btribble at ea.com (Tribble, Brett) Date: Wed, 20 Apr 2011 14:17:02 -0700 Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: <31443742.post@talk.nabble.com> References: <31397569.post@talk.nabble.com> <4DA9F578.5060403@BCDesignsWell.com> <31432493.post@talk.nabble.com> <31443742.post@talk.nabble.com> Message-ID: Check to make sure that your pythonpath and system path are the same after you import the CLR. In other words, what are both of these set to when it works, and when it fails. Perhaps Barton has some idea what causes the underlying error. -----Original Message----- From: pythondotnet-bounces+btribble=ea.com at python.org [mailto:pythondotnet-bounces+btribble=ea.com at python.org] On Behalf Of ElMariachi Sent: Wednesday, April 20, 2011 1:46 PM To: pythondotnet at python.org Subject: Re: [Python.NET] Using numpy/matplotlib - DLL Load Failed I have tried, as you mentioned, importing multiarray first. It is a module declared in numpy.core (the filename is "multiarray.pyd") though I keep getting the same error. Any idea what else I might try? >>> from numpy.core import multiarray Traceback (most recent call last): File "", line 1, in File "c:\python27\lib\site-packages\numpy\__init__.py", line 142, in import add_newdocs File "c:\python27\lib\site-packages\numpy\add_newdocs.py", line 9, in from numpy.lib import add_newdoc File "c:\python27\lib\site-packages\numpy\lib\__init__.py", line 4, in from type_check import * File "c:\python27\lib\site-packages\numpy\lib\type_check.py", line 8, in import numpy.core.numeric as _nx File "c:\python27\lib\site-packages\numpy\core\__init__.py", line 5, in import multiarray ImportError: DLL load failed: The specified module could not be found. Tribble, Brett wrote: > > Import multiarray first as well. Numpy is doing an import in the __init__ > according to what I see here, unless I'm wrong, which is also likely. > Lather, rinse, repeat for any additional modules that fail to load. > > This bug has plagued my pythondotnet usage since day 1... > -- View this message in context: http://old.nabble.com/Using-numpy-matplotlib---DLL-Load-Failed-tp31397569p31443742.html Sent from the Python - pythondotnet mailing list archive at Nabble.com. _________________________________________________ Python.NET mailing list - PythonDotNet at python.org http://mail.python.org/mailman/listinfo/pythondotnet From barton at BCDesignsWell.com Sat Apr 23 22:22:12 2011 From: barton at BCDesignsWell.com (Barton) Date: Sat, 23 Apr 2011 13:22:12 -0700 Subject: [Python.NET] Using numpy/matplotlib - DLL Load Failed In-Reply-To: <31432493.post@talk.nabble.com> References: <31397569.post@talk.nabble.com> <4DA9F578.5060403@BCDesignsWell.com> <31432493.post@talk.nabble.com> Message-ID: <4DB334F4.7060301@BCDesignsWell.com> This is NOT what I have suggested. Use python.exe as installed by python; this gives an unmanaged console app that should be able to import your cpython extensions. THEN import clr; this activates a late-binding of the .NET components. I use this technique successfully to load even the most stubborn (like dynamically manifested wxWindows for 2.7 which has the exact symptom) libraries. I may have time this weekend to do the actual numpy test. WBR, Barton On 4/19/2011 6:22 AM, ElMariachi wrote: > I've tried just this - starting up pythonnet.exe and importing pylab, or > matplotlib, or numpy as the first import prior to clr. I still get the DLL > not found errors. Have you found any other solution? > > > > Barton wrote: >> I have had tons of issues with python 2.7 and manifest issues that did >> not occur in 2.6. >> A short term solution would be to start python from the standard >> (cpython) python.exe, import your extension libraries that don't play >> nicely first, then import clr (relying on the late-bound import hook). >> >> On 4/14/2011 7:26 AM, ElMariachi wrote: >>> Has anyone encountered this error before? What DLL is being searched for >>> and >>> not found? Any help is greatly appreciated! >>> >>> >>>>>> import numpy >>> Traceback (most recent call last): >>> File "", line 1, in >>> File "C:\Python27\lib\site-packages\numpy\__init__.py", line 142, in >>> >>> import add_newdocs >>> File "C:\Python27\lib\site-packages\numpy\add_newdocs.py", line 9, in >>> >>> >>> from numpy.lib import add_newdoc >>> File "C:\Python27\lib\site-packages\numpy\lib\__init__.py", line 4, in >>> >> from type_check import * >>> File "C:\Python27\lib\site-packages\numpy\lib\type_check.py", line 8, >>> in >>> >> le> >>> import numpy.core.numeric as _nx >>> File "C:\Python27\lib\site-packages\numpy\core\__init__.py", line 5, >>> in >>> >> e> >>> import multiarray >>> ImportError: DLL load failed: The specified module could not be found. >> _________________________________________________ >> Python.NET mailing list - PythonDotNet at python.org >> http://mail.python.org/mailman/listinfo/pythondotnet >> >> From barton at bcdesignswell.com Sun Apr 24 01:05:13 2011 From: barton at bcdesignswell.com (Barton) Date: Sat, 23 Apr 2011 16:05:13 -0700 Subject: [Python.NET] Better doc strings. In-Reply-To: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> References: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> Message-ID: <4DB35B29.9040408@bcdesignswell.com> I just pushed the initial DocStringAttribute mods to the trunk: * Python.Runtime now exposes a public class called DocStringAttribute with usage = AttributeTargets.All * Decorating .NET classes and methods has passed initial tests on Mono. ### test.cs ## using System; using System.Runtime.InteropServices; using Python.Runtime; namespace PinvokeTest { [DocStringAttribute("Interface class to external functions.")] public class Invoke { [DocStringAttribute("External funtion simulation: WriteToFile(char) will write a char to the terminal.")] public static void WriteToFile(char arg) { Console.WriteLine("Writing {0}", arg); return; } } } ## test.py ## import clr clr.AddReference("SimpleLibTest") # the name of the .NET or Mono assembly import PinvokeTest from PinvokeTest import Invoke # .NET or Mono namespace maps to a python module # so grab the class from there using import Invoke.WriteToFile('a') # Now call a method on the class print "Function docstring:", print Invoke.WriteToFile.__doc__ print "Class docstring:", Invoke.__doc__ i = Invoke() print "Instance docstring:", i.__doc__ On 03/28/2011 10:44 AM, Brad Byrd wrote: I'm trying to provide better documentation for some C# classes that are called from Python. Ideally, I'd like to markup my class in C#, either with the standard XML comments or with something like a [PythonDocAttribute], and have this documentation show up as the __doc__ string for the method or class in Python. That way, the clients of my wrapped objects will see nice tool-tips on my classes as they code away in their IDE. So, is this easily done? Has anyone else crossed this bridge before? Does something already exist that would work before I start hacking on the Python.NET source? (Also, are the archives of the list searchable somewhere? I just saw clickable-by-month archives, not searchable.) Thanks, Brad... _________________________________________________ Python.NET mailing list - PythonDotNet at python.org http://mail.python.org/mailman/listinfo/pythondotnet From btribble at ea.com Tue Apr 26 01:17:16 2011 From: btribble at ea.com (Tribble, Brett) Date: Mon, 25 Apr 2011 16:17:16 -0700 Subject: [Python.NET] Better doc strings. In-Reply-To: <4DB35B29.9040408@bcdesignswell.com> References: <89447F9C4E521C4AB572366D2225CECED0EC@IRVEX008.corp.blizzard.net> <4DB35B29.9040408@bcdesignswell.com> Message-ID: Well done sir! -----Original Message----- From: pythondotnet-bounces+btribble=ea.com at python.org [mailto:pythondotnet-bounces+btribble=ea.com at python.org] On Behalf Of Barton Sent: Saturday, April 23, 2011 4:05 PM To: Brad Byrd Cc: pythondotnet at python.org Subject: Re: [Python.NET] Better doc strings. I just pushed the initial DocStringAttribute mods to the trunk: * Python.Runtime now exposes a public class called DocStringAttribute with usage = AttributeTargets.All * Decorating .NET classes and methods has passed initial tests on Mono. ### test.cs ## using System; using System.Runtime.InteropServices; using Python.Runtime; namespace PinvokeTest { [DocStringAttribute("Interface class to external functions.")] public class Invoke { [DocStringAttribute("External funtion simulation: WriteToFile(char) will write a char to the terminal.")] public static void WriteToFile(char arg) { Console.WriteLine("Writing {0}", arg); return; } } } ## test.py ## import clr clr.AddReference("SimpleLibTest") # the name of the .NET or Mono assembly import PinvokeTest from PinvokeTest import Invoke # .NET or Mono namespace maps to a python module # so grab the class from there using import Invoke.WriteToFile('a') # Now call a method on the class print "Function docstring:", print Invoke.WriteToFile.__doc__ print "Class docstring:", Invoke.__doc__ i = Invoke() print "Instance docstring:", i.__doc__ On 03/28/2011 10:44 AM, Brad Byrd wrote: I'm trying to provide better documentation for some C# classes that are called from Python. Ideally, I'd like to markup my class in C#, either with the standard XML comments or with something like a [PythonDocAttribute], and have this documentation show up as the __doc__ string for the method or class in Python. That way, the clients of my wrapped objects will see nice tool-tips on my classes as they code away in their IDE. So, is this easily done? Has anyone else crossed this bridge before? Does something already exist that would work before I start hacking on the Python.NET source? (Also, are the archives of the list searchable somewhere? I just saw clickable-by-month archives, not searchable.) Thanks, Brad... _________________________________________________ Python.NET mailing list - PythonDotNet at python.org http://mail.python.org/mailman/listinfo/pythondotnet _________________________________________________ Python.NET mailing list - PythonDotNet at python.org http://mail.python.org/mailman/listinfo/pythondotnet From dougrohm at sent.com Fri Apr 29 17:15:18 2011 From: dougrohm at sent.com (Douglas Rohm) Date: Fri, 29 Apr 2011 11:15:18 -0400 Subject: [Python.NET] Python 3 Support? Message-ID: <1304090118.2239.1446495085@webmail.messagingengine.com> Hi, Are there plans to add support for py3k? Is there a way I can get a .NET .dll to work under py3k currently or will I have to use python 2.7? Thanks. Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: