Re: C-API: A beginner's problem

2006-03-19 Thread Fabian Steiner
Heikki Salo wrote: > Heikki Salo wrote: >> Fabian Steiner wrote: >>> What did I do wrong? As I am quite new to C, I probably made many >>> mistakes, so please feel free to correct me. >> >> The following line: >> >> > for (i = 0; i <=

Re: C-API: A beginner's problem

2006-03-19 Thread Fabian Steiner
Georg Brandl wrote: > Fabian Steiner wrote: >> [...] >> for (i = 0; i <= seqlen; i++) { > > That is one iteration too much. Use > > for (i = 0; i < seglen; i++) > >> item = PySequence_Fast_GET_ITEM(seq, i); > > Now item

best way to install python modules on linux

2006-04-07 Thread Fabian Braennstroem
. does there exist any script/program, which downloads and installs automatically the latest stable releases of selected modules? It would be nice, if the program can remove the installed modules, too!? Or would it be easier to stick to apt/deb and create own packages ... Greetings! Fabian

Re: best way to install python modules on linux

2006-04-08 Thread Fabian Braennstroem
.2: undefined symbol: e_wsfe Which looks pretty odd for me!? Greetings! Fabian -- http://mail.python.org/mailman/listinfo/python-list

Creating an event loop

2006-04-09 Thread Fabian Steiner
his the right way to achieve the exepected result or are there any better ways? Cheers, Fabian -- http://mail.python.org/mailman/listinfo/python-list

Re: best way to install python modules on linux

2006-04-10 Thread Fabian Braennstroem
Hi, * Robert Kern <[EMAIL PROTECTED]> wrote: > Fabian Braennstroem wrote: >> Hi to all, >> >> thanks for your ideas! I just figured out a different way >> using archlinux 'pacman' (package management tool like apt). >> As a former archlinux user

twisted.web and a

2006-04-10 Thread Fabian Steiner
e hasn't been opened so far. Do you have any idea how to solve this problem? I am looking forward to any responses. Cheers, Fabian -- http://mail.python.org/mailman/listinfo/python-list

Re: best way to install python modules on linux

2006-04-14 Thread Fabian Braennstroem
Hi Harry, * Harry George <[EMAIL PROTECTED]> wrote: > Fabian Braennstroem <[EMAIL PROTECTED]> writes: > >> Hi, >> >> I am pretty new to python and will use it mainly in >> combination with scientific packages. I am running ubuntu >> breezy righ

OT: Tech Adviser Wanted by Unusual Social Venture Startup AND WEBEX QUESTION

2010-03-28 Thread Fabian Hernandez
-- Forwarded message -- From: G.Lowell Krane Date: 2010/3/27 Subject: Fwd: [Off Topic] Tech Adviser Wanted by Unusual Social Venture Startup AND WEBEX QUESTION To: Daniel Arbelaez Cc: arpunk , Fabian Hernandez Here is the ad i am trying to get Python-list to post ASAP--this

Re: [Off Topic] Tech Adviser Wanted by Unusual Social Venture Startup AND WEBEX QUESTION

2010-03-28 Thread Fabian Hernandez
est couples (TM)," and > "Making Honesty easier than ever before." > Medellin: 300 415 5298 > Skype: garykrane > > "Un ser humano se convierte en una gran exactitud en la medida en la que él > trabaja para el bienestar de sus compañeros " - Mahatma Gandhi > "The greatness of a human is to be measured exactly by the degree to which > he has helped his/her fellow human."-Gandhi > "The best things in life are not things" (anon) > > -- Fabian Hernandez Nieto http://www.sidesoftware.net Linux User # 485518 -- http://mail.python.org/mailman/listinfo/python-list

addressof object with id()

2013-03-23 Thread Fabian von Romberg
function on var1 and var2, it returns exactly the same address. can anyone explain me please why does this happens? Is this correct? Thanks in advance and regards, Fabian -- http://mail.python.org/mailman/listinfo/python-list

import in Python3.3

2013-03-24 Thread Fabian von Romberg
Hi, I have a package name collections and inside of my package I want to import the collections package from the standard library, but there is name conflicts. How do I import explicitly from the standard library? Im working on Python3.3 Thanks in advance and regards, Fabian -- http

Re: import in Python3.3

2013-03-24 Thread Fabian von Romberg
Hi Steven, thanks a lot for the explanation. I will keep in mind not to use names for my modules that can shadow the standard library. Regards, Fabian On 03/24/2013 07:27 PM, Steven D'Aprano wrote: > On Sun, 24 Mar 2013 18:12:49 -0500, Fabian von Romberg wrote: > >> H

io.BytesIO

2013-03-24 Thread Fabian von Romberg
Hi, is there any way to get the allocated memory size from a io.BytesIO object? Thanks and regards, Fabian -- http://mail.python.org/mailman/listinfo/python-list

Re: io.BytesIO

2013-03-24 Thread Fabian von Romberg
attribute or method? Regards, Fabian On 03/24/2013 11:47 PM, Steven D'Aprano wrote: > On Sun, 24 Mar 2013 22:56:12 -0500, Fabian von Romberg wrote: > >> Hi, >> >> is there any way to get the allocated memory size from a io.BytesIO >> object? > > The same a

Re: io.BytesIO

2013-03-25 Thread Fabian von Romberg
use io.BufferedWriter instead. Just one question, what has better performance: BufferedWriter or BytesIO? Thanks and regards, Fabian On 03/25/2013 01:54 AM, Steven D'Aprano wrote: > On Mon, 25 Mar 2013 00:10:04 -0500, Fabian von Romberg wrote: > >> Hi Steven, >> >>

Urllib2 not working

2009-08-22 Thread Carlos Fabian Ramirez
Hello, When I try to open a URL using urllib2.urlopen it returns Name or service not known. It is not a problem with my Internet I believe, since I have Internet access on my computer, and I have verified it is not a syntax, or spelling, error on my part. I have also tried accessing the site (googl

<    1   2