Re: Segmentation fault (core dumped) while using Cplex Python API

2014-06-01 Thread Akira Li
varun...@gmail.com writes: > Hello Everyone, > > I am trying to solve a mixed-integer problem using Cplex Python API > and I get this error Segmentation fault (core dumped). i am not able > to figure out the reason for this. > Traceback > > srva@hades:~$ python RW10.py

Re: Segmentation fault (core dumped) while using Cplex Python API

2014-06-01 Thread Gary Herron
On 06/01/2014 12:28 PM, varun...@gmail.com wrote: Hello Everyone, I am trying to solve a mixed-integer problem using Cplex Python API and I get this error Segmentation fault (core dumped). i am not able to figure out the reason for this. Traceback srva@hades:~$ python RW10.py --output test

Segmentation fault (core dumped) while using Cplex Python API

2014-06-01 Thread varun7rs
Hello Everyone, I am trying to solve a mixed-integer problem using Cplex Python API and I get this error Segmentation fault (core dumped). i am not able to figure out the reason for this. Traceback srva@hades:~$ python RW10.py --output test --logPath log --xml topology.xml Start Time: 2014-6

Re: how avoid delay while returning from C-python api?

2014-05-30 Thread Lakshmipathi.G
Yes, Cython looks easier but the problem its a very old code ( 6 or 7 years ). Almost entire code base uses plain python-c api. Thanks for the example, will use Cython or Ctypes way for side-projects! Cheers, Lakshmipathi.G FOSS Programmer. www.giis.co.in/readme.html -- https://mail.pytho

Re: how avoid delay while returning from C-python api?

2014-05-28 Thread Stefan Behnel
Lakshmipathi.G, 28.05.2014 12:22: > I have C-Python api like below. It works fine, but the problem is > while invoking this method > from python script say > > #cat script.py > > offset=0 > size=4 > write_object(offset,size) > > > > This calls write_thi

Re: how avoid delay while returning from C-python api?

2014-05-28 Thread Lakshmipathi.G
The statement "after call" printed to stdout and the script waits there for few seconds. So I was assuming something delaying the return value. Just found out there is core-dump "segmentation fault (core dumped) python" ..Probably fixing core dump should resolve the issue. Thanks! Cheers, La

Re: how avoid delay while returning from C-python api?

2014-05-28 Thread Ned Batchelder
On 5/28/14 6:22 AM, Lakshmipathi.G wrote: Hi - I have C-Python api like below. It works fine, but the problem is while invoking this method from python script say #cat script.py offset=0 size=4 write_object(offset,size) This calls write_this_c() C api and returns quickly to next printf

how avoid delay while returning from C-python api?

2014-05-28 Thread Lakshmipathi.G
Hi - I have C-Python api like below. It works fine, but the problem is while invoking this method from python script say #cat script.py offset=0 size=4 write_object(offset,size) This calls write_this_c() C api and returns quickly to next printf statement. But the return call (Py_RETURN_NONE

Re: Python API

2013-06-17 Thread python27
On Monday, June 17, 2013 2:38:56 PM UTC+8, Ganesh Pandi wrote: > Hi > > What are all the python api, u used in your python programming, we > used more api but may we forgot those, so i just want to list down the api we > familiar aboutplease add your replies.

Re: Python API

2013-06-16 Thread rusi
On Jun 17, 11:38 am, Ganesh Pandi wrote: > Hi >         What are all the python api, u used in your python programming, we > used more api but may we forgot those, so i just want to list down the api we > familiar aboutplease add your replies... Maybe you are

Python API

2013-06-16 Thread Ganesh Pandi
Hi What are all the python api, u used in your python programming, we used more api but may we forgot those, so i just want to list down the api we familiar aboutplease add your replies... -- http://mail.python.org/mailman/listinfo/python-list

Re: Require information on python API for Subversion related work

2011-08-02 Thread Tim Golden
On 02/08/2011 14:02, Shambhu Rajak wrote: I need an api that can be used to do following operations on Subversion repository tool: 1.Create branch 2.Check out 3.Check in 4.Merge http://pysvn.tigris.org/ (which is, by the way, the first Google hit for "Python Subversion bindings") TJG -

Require information on python API for Subversion related work

2011-08-02 Thread Shambhu Rajak
Hi , I need an api that can be used to do following operations on Subversion repository tool: 1. Create branch 2. Check out 3. Check in 4. Merge Regards, Shambhu -- http://mail.python.org/mailman/listinfo/python-list

Re: C++ - Python API

2010-09-19 Thread Aahz
In article , Thomas Jollans wrote: >On Sunday 19 September 2010, it occurred to Aahz to exclaim: >> In article , >> Thomas Jollans wrote: >>>On Wednesday 01 September 2010, it occurred to Markus Kraus to exclaim: So the feature overview: >>> >>>First, the obligatory things you don't w

Re: C++ - Python API

2010-09-19 Thread Thomas Jollans
On Sunday 19 September 2010, it occurred to Aahz to exclaim: > In article , > > Thomas Jollans wrote: > >On Wednesday 01 September 2010, it occurred to Markus Kraus to exclaim: > >> So the feature overview: > >First, the obligatory things you don't want to hear: Have you had > >a look at similar

Re: C++ - Python API

2010-09-19 Thread Aahz
In article , Thomas Jollans wrote: >On Wednesday 01 September 2010, it occurred to Markus Kraus to exclaim: >> >> So the feature overview: > >First, the obligatory things you don't want to hear: Have you had >a look at similar efforts? A while ago, Aahz posted something very >similar on this very

Re: C++ - Python API

2010-09-01 Thread Markus Kraus
Thanks for the answer On 1 Sep., 22:29, Thomas Jollans wrote: > On Wednesday 01 September 2010, it occurred to Markus Kraus to exclaim: > > > So the feature overview: > > First, the obligatory things you don't want to hear: Have you had a look at > similar efforts? A while ago, Aahz posted someth

Re: C++ - Python API

2010-09-01 Thread Thomas Jollans
On Wednesday 01 September 2010, it occurred to Markus Kraus to exclaim: > So the feature overview: First, the obligatory things you don't want to hear: Have you had a look at similar efforts? A while ago, Aahz posted something very similar on this very list. You should be able to find it in any

C++ - Python API

2010-09-01 Thread Markus Kraus
Hi guys i worked on this for severl days (or even weeks?!) now, but im nearly finished with it: A complete C++ to Python API which allows you to use python as a scripting language for your C++ projects. Simple example: --- python code --- def greet( player ): print( "Hello p

Re: Appending to a file using Python API

2010-07-08 Thread Steven D'Aprano
On Wed, 07 Jul 2010 23:55:46 -0700, lavanya wrote: > Hello all, > > How do you append to a file using Python os::file APIs. So that it > appends to the content of the file. Not adding the content to the new > line. But just appends next to the exiting content of the file. > > Example : current c

Appending to a file using Python API

2010-07-08 Thread lavanya
Hello all, How do you append to a file using Python os::file APIs. So that it appends to the content of the file. Not adding the content to the new line. But just appends next to the exiting content of the file. Example : current content of file A B C if we append D to it, it should be A B C D N

Re: Recommendations for cloud based file storage service with Python API?

2010-02-17 Thread Robert Kern
On 2010-02-17 09:10 AM, pyt...@bdurham.com wrote: I'm looking for recommendations on a cloud based file storage service with a Python API. Would appreciate hearing feedback from anyone using Python to interface to Amazon S3, RackSpace Cloud Files, Microsoft Azure, Rsync.net, or other hosted

Recommendations for cloud based file storage service with Python API?

2010-02-17 Thread python
I'm looking for recommendations on a cloud based file storage service with a Python API. Would appreciate hearing feedback from anyone using Python to interface to Amazon S3, RackSpace Cloud Files, Microsoft Azure, Rsync.net, or other hosted file storage service. What services do you recomme

Re: Let python call a C function pointer passed from the C Python API

2009-11-16 Thread sturlamolden
On 16 Nov, 14:25, Carl Banks wrote: > Python can't call C function pointers.   Yes it can, use ctypes... -- http://mail.python.org/mailman/listinfo/python-list

Re: Let python call a C function pointer passed from the C Python API

2009-11-16 Thread Carl Banks
On Nov 16, 5:04 am, hvictor wrote: > I have C++ a void function pointer stored in a variable call. The > pointed function takes an int and a char* as arguments. > > I have a python module containing this function: > > def yeah(x): >         x(int(0),"text argument") >         return "pointer calle

Let python call a C function pointer passed from the C Python API

2009-11-16 Thread hvictor
I have C++ a void function pointer stored in a variable call. The pointed function takes an int and a char* as arguments. I have a python module containing this function: def yeah(x): x(int(0),"text argument") return "pointer called" As you can see I'm trying to use the argument

TWiki Python API Wrapper

2009-06-29 Thread ma
Has anyone come across a decent python API wrapper for TWiki? I'm trying to automate some reports and logs to automatically post, create topics, and re-arrange a few things on our TWiki, but my googleFu has failed me :( I did find an interesting module in Perl, http://cpanratings.perl.org

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread John Machin
On May 12, 11:48 pm, Hrvoje Niksic wrote: > rahul writes: > > Hi Christian, > >   rb_big2str(Big-Integer, base) of ruby returns string *base* >representation > > of big-Integer. now, i am able to find equivalent python API function > > of rb_str2cst

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread Hrvoje Niksic
rahul writes: > Hi Christian, > rb_big2str(Big-Integer, base) of ruby returns string representation > of big-Integer. now, i am able to find equivalent python API function > of rb_str2cstr() of ruby. That would be PyLong_FromString, for the sake of later searches. > so , pleas

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread rahul
tion of big-Integer. now, i am able to find equivalent python API function of rb_str2cstr() of ruby. so , please help me about rb_big2str(Big-Integer, base) equivalent of Python API function which i can use in extended module in c. --- rahul --- rahul -- http://mail.python.org/mailman/listinfo/python-list

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread Christian Heimes
rahul schrieb: > Is functions equivalent to ruby's rb_big2str() and rb_str2cstr() > available in Python. > I had search a lot in google but not able to find that. > If anybody know than please give me the name of those functions of > Python. Please don't assume that we know what the Ruby function

Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread rahul
Is functions equivalent to ruby's rb_big2str() and rb_str2cstr() available in Python. I had search a lot in google but not able to find that. If anybody know than please give me the name of those functions of Python. -- http://mail.python.org/mailman/listinfo/python-list

C-Python API problem

2009-01-27 Thread Rajorshi Biswas
Hi, I was trying out the sample program to load a python script from C in the Python tutorial at http://docs.python.org/extending/embedding.html (Section: Pure Embedding).Usage: call pythonfile funcname [args] When running this script, I can run things like the following:call mytest foobut not a

Re: HELP!...Google SketchUp needs a Python API

2008-12-06 Thread r
[Lie] Sketchup's target users is not power users but those who need quick sketches, so scripting isn't an extremely important feature in Sketchup.[/Lie] Your Wrong, SketchUp PRO is marketed at ACAD users and other high profile CAD and CAM applications. SketchUp models can be exported to ACAD and A

Re: HELP!...Google SketchUp needs a Python API

2008-12-06 Thread Lie
On Dec 3, 10:06 am, r <[EMAIL PROTECTED]> wrote: > "If we can laugh what else would we do" > > I'd like to touch also on some comments by ajaksu: > [ajaksu] > I'd like to try hacking some form of Python to work in SketchUp (on > top of Ruby, that is). Now, why won't I try to? I'm a Linux user and >

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread Benjamin Kaplan
On Tue, Dec 2, 2008 at 10:06 PM, r <[EMAIL PROTECTED]> wrote: > "If we can laugh what else would we do" > > I'd like to touch also on some comments by ajaksu: > [ajaksu] > I'd like to try hacking some form of Python to work in SketchUp (on > top of Ruby, that is). Now, why won't I try to? I'm a Li

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread r
"If we can laugh what else would we do" I'd like to touch also on some comments by ajaksu: [ajaksu] I'd like to try hacking some form of Python to work in SketchUp (on top of Ruby, that is). Now, why won't I try to? I'm a Linux user and we don't get a SU version. So much for FREEDOM. BTW, some thi

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread Aaron Brady
On Dec 2, 6:24 pm, r <[EMAIL PROTECTED]> wrote: > I added you name to my "for" list. thanks +1 entertaining thread. -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread r
I added you name to my "for" list. thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread James Mills
You're a funny man r :) Good luck with your endeavours! I have a hard enough time convincing my work colleagues to use anything other than PHP for everything! Here PHP is the Hammer / Pitchfork! --JamesMills On Wed, Dec 3, 2008 at 8:16 AM, r <[EMAIL PROTECTED]> wrote: > OK...so here are the stat'

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread James Mills
On Wed, Dec 3, 2008 at 4:44 AM, Benjamin Kaplan <[EMAIL PROTECTED]> wrote: > > > On Tue, Dec 2, 2008 at 1:36 PM, Craig Allen <[EMAIL PROTECTED]> wrote: >> >> > Just remember thought that if you threat Python like a >> > hammer, suddenly everything will look like a bail. >> > >> >> don't you mean if

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread r
OK...so here are the stat's so far. 6+BDFL - who would support my crazy idea, or think it -might- be ok 11 - who are on the fence 6 - who think this is a complete waste of time, a stupid idea, or just simply want to kill me -> from these stats i can deduce the following: total_members_comp.lang.p

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread r
"The devils in the details" -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread Benjamin Kaplan
On Tue, Dec 2, 2008 at 1:36 PM, Craig Allen <[EMAIL PROTECTED]> wrote: > > Just remember thought that if you threat Python like a > > hammer, suddenly everything will look like a bail. > > > > don't you mean if you use Python like a pitchfork? Or that everything else looks like a nail. B and N a

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread Craig Allen
> Just remember thought that if you threat Python like a > hammer, suddenly everything will look like a bail. > don't you mean if you use Python like a pitchfork? -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread r
At least -someone- besides myself has a sense of humor around here. PS James, i will look through my contact list and send you a few "easy" numbers... good luck :) -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-02 Thread James Mills
Pssft r, it's I that needs to get laid :) --JamesMills On Tue, Dec 2, 2008 at 4:07 PM, r <[EMAIL PROTECTED]> wrote: > PS james, > > Since you are alex23's friend, do the world a favor...PLEASE GET ALEX > LAID...before it's too late! > -- > http://mail.python.org/mailman/listinfo/python-list >

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread r
PS james, Since you are alex23's friend, do the world a favor...PLEASE GET ALEX LAID...before it's too late! -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread r
Ok, so i was wrong about you =) -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread alex23
On Dec 2, 2:18 pm, r <[EMAIL PROTECTED]> wrote: > PS hey...even alex23's post are a little less mean. Either I am > wearing him down or he is beginning to believe :) Yes, my wishing your death by asphyxiation is "less mean" than my original post suggesting you do some work. Your lack of reading c

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread r
alex23, Ok...you don't like my idea...so why keep responding? ajaksu, You insulted me and accused me of trolling, but it looks like your interested. And you also included links. I think your really on board and just can't say it yet *wink*. Thank You Aaron, I agree to disagree with you...although

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread James Mills
This is my first post to this particular topic and my good friend alsex32 will know that I tend to steer away from large pointless conversation topics (for obvious reasons). @OP: Listen ... The best way you can support Python is to use Python. The best way you can promote Python is to encourage o

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread Aaron Brady
On Dec 1, 2:29 pm, r <[EMAIL PROTECTED]> wrote: > Rome is Burning! > Pay particular attention to the second paragraph. > > Narcissistic culture > > Main article: The Culture of Narcissism > Historian and social critic Christopher Lasch described this topic in > his book, "The Culture of Narcissism"

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread ajaksu
r, you could just calm down, stop your trolling and wait to see if more people like greg are able to see a good idea behind your awful delivery. Seriously, you're talking nonsense to people that have actively promoted, taught, developed with and helped develop Python for years. You're mistaking la

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread alex23
On Dec 2, 6:29 am, r <[EMAIL PROTECTED]> wrote: > In such a society of constant competition, there can be no allies, and > little transparency. The threats to acquisitions of social symbols are > so numerous, varied and frequently incomprehensible, that > defensiveness, as well as competitiveness,

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread r
Rome is Burning! Pay particular attention to the second paragraph. Narcissistic culture Main article: The Culture of Narcissism Historian and social critic Christopher Lasch described this topic in his book, "The Culture of Narcissism",[3] published in 1979. He defines a narcissistic culture as

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread Richard Riley
[EMAIL PROTECTED] writes: > Don't feed the troll. > Yet you did and made the previous post visible to me. If you don't want people to feed the troll, do not do it yourself. -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-12-01 Thread cptnwillard
Don't feed the troll. -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-30 Thread r
Aaron Brady wrote: > That's circular: Sketchup is the first step within the Sketchup > movement. Dear God...I have entered the twilight zone! This is the Python movement(comp.lang.python)? get it? To move you must first take a step. Lest you never move. "I" am the BDFL of the SketchUp-Python int

Re: HELP!...Google SketchUp needs a Python API

2008-11-30 Thread Aaron Brady
> > r, i am with you! i will back Python!!! we MUST spread > > Python throughout the world! sketchup is the first step, > > only the first step. > > First step? Really? AFAIK, Python is already used in: OpenOffice.Org, > Blender, GIMP, Inkscape, Scribus, etc. I've never used these tools, > but I

Re: HELP!...Google SketchUp needs a Python API

2008-11-30 Thread r
The "first step" simply meant..."within this movement"...Not that there exist no "other" Python API's. -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-30 Thread Lie
On Nov 28, 1:52 pm, [EMAIL PROTECTED] wrote: > On Nov 27, 10:28 pm, r <[EMAIL PROTECTED]> wrote: > > > To think...that I would preach freedom to the slaves and be lynched > > for it...IS MADNESS! > > > Not one vote for Python, not a care. I think everyone here should look > > deep within their self

Re: HELP!...Google SketchUp needs a Python API

2008-11-30 Thread Lie
On Nov 28, 12:28 pm, r <[EMAIL PROTECTED]> wrote: > To think...that I would preach freedom to the slaves and be lynched > for it...IS MADNESS! > > Not one vote for Python, not a care. I think everyone here should look > deep within their self and realize the damage that has been done > today! I hop

Re: HELP!...Google SketchUp needs a Python API

2008-11-29 Thread r
Greg, You have made my week friend! I had given up hope that anybody cared about Python! -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-29 Thread greg
I for one would love to see a Python scripting interface for Sketchup. I carried out a fairly major Sketchup scripting exercise recently [1], and while it was fun, I would have enjoyed it more if I'd been able to use Python. However, I think it's going to be a fairly tall order to persuade the Sk

Re: HELP!...Google SketchUp needs a Python API

2008-11-29 Thread r
After careful consideration and much pondering of the subject, I will NOT retract my words. And I will give you truthful answers for my reasons. People have said that i ripped Ruby in my promotion of Python. This just IS NOT True. Lets go over the facts here, and let them speak louder than words.

Re: HELP!...Google SketchUp needs a Python API

2008-11-29 Thread Дамјан Георгиевски
> Fight with me for Glory not riches. Fight with me and > you shall be free. FREDOM! SketchUp is not free -- дамјан ( http://softver.org.mk/damjan/ ) war is peace freedom is slavery restrictions are enablement -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-29 Thread Aaron Brady
On Nov 28, 10:42 pm, r <[EMAIL PROTECTED]> wrote: > Arron, i give you an A++ just for writing a longer post than me =D Hey wow, lucky me. Maybe someone will read it too. -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Look what you made the BDFL do!! Now he is sending Python to hell! :) -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Arron, i give you an A++ just for writing a longer post than me =D -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Ross Ridge
Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > Given three or four mis-spellings just in the "from:" header data... Which were obviously intentional. >This doesn't even pass as an attempt at humor... I found it midly amusing, which is more than can be said for any other post in this threa

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
I now see how the remarks in my OP could be mis-interpreted the same way i mis-interpreted Chris's reply to my OP. I hope from the above Q&A will better convey my goals. All my goals are pure here. I simply just wanted to submit a list of Python API advocates to the SketchUp feature re

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Tommy Grav
From the long header: X-Read-This:This message is not from GvR the creator of Python. My guess i My guess is that r is behind this himself. Tommy On Nov 28, 2008, at 7:56 PM, Dennis Lee Bieber wrote: On 29 Nov 2008 00:26:06 GMT, Giudo von Rossom <[EMAIL PROTECTED]> declaimed the f

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Chris Rebert
On Thu, Nov 27, 2008 at 4:09 PM, r <[EMAIL PROTECTED]> wrote: > On Nov 27, 5:42 pm, r <[EMAIL PROTECTED]> wrote: >> On Nov 27, 5:38 pm, "Chris Rebert" <[EMAIL PROTECTED]> wrote: >> > On Thu, Nov 27, 2008 at 3:33 PM, r <[EMAIL PROTECTED]> wrote: >> > > On Nov 27, 5:27 pm, "Chris Rebert" <[EMAIL PROT

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Chris Rebert
On Fri, Nov 28, 2008 at 9:52 AM, r <[EMAIL PROTECTED]> wrote: >> and we're not throwing ourselves at your pet project because most of us >> don't give a monkey's toss about Sketchup. > Why should we put our time and >> energy into a piece of software that we don't care about? > > AGAIN, I'm NOT a

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Terry, are you saying you want to join the push for Python? i would love to have you aboard! -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Aaron Brady
On Nov 27, 9:45 pm, r <[EMAIL PROTECTED]> wrote: > On Nov 27, 9:31 pm, alex23 <[EMAIL PROTECTED]> wrote: > > On Nov 28, 12:49 pm, r <[EMAIL PROTECTED]> wrote: > > > Well... 3 for Ruby 1 for python. Not looking good so far. Any more > > > votes? > > > I don't see -any- of the responses in this threa

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread MRAB
Dennis Lee Bieber wrote: On 29 Nov 2008 00:26:06 GMT, Giudo von Rossom <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: Given three or four mis-spellings just in the "from:" header data... This doesn't even pass as an attempt at humor... > It's not comparable to the Parr

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Giudo von Rossom
On Fri, 28 Nov 2008 15:22:58 -0800, r wrote: > You know I said before that I hoped Guido never see's this thread...but > i wonder if maybe he should see it...To see how far the "great > advocates" have fallen. I am disappointed to say the least. I would not > want to be in his shoes and see this!

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Terry, In my haste I may have miss-read your post...Are you saying that there are people who WOULD support Python in SketchUp? Are you one of them? Can you tell me who else may be interested? How can i contact these people? -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Terry, I in my haste I may have miss-read your post...Are you saying that there are people who WOULD support Python in SketchUp? Are you one of them? Can you tell me who else may be interested? How can i contact these people? -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Benjamin Kaplan
On Fri, Nov 28, 2008 at 6:22 PM, r <[EMAIL PROTECTED]> wrote: > You know i wonder how many people saw that the link to the OP had > 30,40 replies and they said...WOW it looks like the community is > getting behind a project to host Python, I had better check this out! > Then when they opened the l

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
You know i wonder how many people saw that the link to the OP had 30,40 replies and they said...WOW it looks like the community is getting behind a project to host Python, I had better check this out! Then when they opened the link and saw all the negative responses from well known posters...either

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
You know i wonder how many people saw that the link to the OP had 30,40 replies and they said...WOW it looks like the community is getting behind a project to host Python, I had better check this out! Then when they opened the link and saw all the negative responses from well known posters...either

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
OK people, where back to 2 for Python and i will not even mention the one's against. I thought Terry was 50% onboard but he has just made his choice known. I would have liked to have you on board Terry, and will forgive if you change your mind. -- http://mail.python.org/mailman/listinfo/python-li

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Terry Reedy
r wrote: On Nov 28, 4:32 am, Steven D'Aprano <[EMAIL PROTECTED] cybersource.com.au> wrote: Are you trolling? Are you some sort of agent provocateur trying to put people *against* the idea of Python > scripting for Sketchup? If not, you're sure doing an excellent imitation of one. I

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread George Sakkis
On Nov 28, 4:16 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Now, up up and away into my killfilter, Ditto; apparently it's either a troll or an 8-year old. George -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Oh Python, where art thy faithful followers, thy house is crumbling, thy last breath spent, thy season draweth nigh...Ye have fought bravely for all that is good. But ye are encompassed on all sides by evil. Those who proclaim to love you are only the very same who seek your end! Weep oh lovers of

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Diez B. Roggisch
r schrieb: The fact _you_ don't like Ruby doesn't make it a bad language. If what you want is a Python API to SketchUp, bashing Ruby certainly won't help - quite on the contrary. And it won't help promoting Python neither. Thanks Bruno, I never said Ruby is a bad Lang

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Diez B. Roggisch
r schrieb: The fact _you_ don't like Ruby doesn't make it a bad language. If what you want is a Python API to SketchUp, bashing Ruby certainly won't help - quite on the contrary. And it won't help promoting Python neither. Thanks Bruno, I never said Ruby is a bad Lang

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
On Nov 28, 2:43 pm, r <[EMAIL PROTECTED]> wrote: > On Nov 28, 2:24 pm, [EMAIL PROTECTED] wrote: > > > > > On Nov 28, 6:15 am, Bruno Desthuilliers > > [EMAIL PROTECTED]> wrote: > > > r a écrit : > > > > On Nov 28, 12:52 am, [EMAIL PROTECTED] wrote: > > > >> On Nov 27, 10:28 pm, r <[EMAIL PROTECTED]

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
On Nov 28, 2:24 pm, [EMAIL PROTECTED] wrote: > On Nov 28, 6:15 am, Bruno Desthuilliers > > > [EMAIL PROTECTED]> wrote: > > r a écrit : > > > On Nov 28, 12:52 am, [EMAIL PROTECTED] wrote: > > >> On Nov 27, 10:28 pm, r <[EMAIL PROTECTED]> wrote: > > > >>> To think...that I would preach freedom to th

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread rurpy
On Nov 28, 6:15 am, Bruno Desthuilliers wrote: > r a écrit : > > On Nov 28, 12:52 am, [EMAIL PROTECTED] wrote: > >> On Nov 27, 10:28 pm, r <[EMAIL PROTECTED]> wrote: > > >>> To think...that I would preach freedom to the slaves and be lynched > >>> for it...IS MADNESS! > >>> Not one vote for Python

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
On Nov 28, 4:32 am, Steven D'Aprano <[EMAIL PROTECTED] cybersource.com.au> wrote: > Are you trolling? Are you some sort of agent provocateur trying to put people > *against* the idea of Python > scripting for Sketchup? If not, > you're sure doing an excellent imitation of one. I am the

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
Thanks again alex23, but did you not already post the exact same thing, can you not engage in intellectual conversation, or have you spent your last penny? -- http://mail.python.org/mailman/listinfo/python-list

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
On Nov 28, 11:52 am, r <[EMAIL PROTECTED]> wrote: > > and we're not throwing ourselves at your pet project because most of us > > don't give a monkey's toss about Sketchup. > Why should we put our time and > > energy into a piece of software that we don't care about? > > AGAIN, I'm NOT asking you

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
> The fact _you_ don't like Ruby doesn't make it a bad language. If what > you want is a Python API to SketchUp, bashing Ruby certainly won't help > - quite on the contrary. And it won't help promoting Python neither. Thanks Bruno, I never said Ruby is a bad Language!

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread r
> and we're not throwing ourselves at your pet project because most of us don't > give a monkey's toss about Sketchup. > Why should we put our time and energy > into a piece of software that we don't care about? AGAIN, I'm NOT asking you to support SKETCHUP I am asking for support for PYTHON! Di

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Bruno Desthuilliers
r a écrit : On Nov 28, 12:52 am, [EMAIL PROTECTED] wrote: On Nov 27, 10:28 pm, r <[EMAIL PROTECTED]> wrote: To think...that I would preach freedom to the slaves and be lynched for it...IS MADNESS! Not one vote for Python, not a care. I think everyone here should look deep within their self and

Re: HELP!...Google SketchUp needs a Python API

2008-11-28 Thread Bruno Desthuilliers
Ruby. No ? Really ? Then I don't want to know what you could come with if you tried to. But i have tried to learn Rudy and i all i get is a headache... (snip more Ruby bashing). The fact _you_ don't like Ruby doesn't make it a bad language. If what you want is a Python API

  1   2   >