Motorola Atrix review

2013-03-02 Thread 23alagmy
Motorola Atrix review http://natigtas7ab.blogspot.com/2012/10/motorola-atrix-review.html -- http://mail.python.org/mailman/listinfo/python-list

Samsung Galaxy Mini

2013-03-02 Thread alagmy
Samsung Galaxy Mini http://natigtas7ab.blogspot.com/2012/10/samsung-galaxy-mini.html -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread James Griffin
[- Sat 2.Mar'13 at 17:54:57 +1100 Chris Angelico :-] > On Sat, Mar 2, 2013 at 5:09 PM, Devin Jeanpierre > wrote: > > On Fri, Mar 1, 2013 at 10:54 PM, Chris Angelico wrote: > >>> No offence Chris, but you're the only person I know who *regularly* > >>> replies to the wrong list

Re: How to install development package on linux?

2013-03-02 Thread Kwpolska
On Sat, Mar 2, 2013 at 7:24 AM, Sarbjit singh wrote: > Sorry for this basic question but I am having problem compiling mod_wsgi on > Linux. As per mod_wsgi package site, user must have python development > package installed on system. > > I had installed Python2.7 on my Linux system from source

Re: Having problems crashing IDLE

2013-03-02 Thread Peter Otten
Quintessence wrote: > Thank you for the advice! I checked the setting you specified and "Open > Shell Window" at startup was already selected. Is there another bug this > could be related to? None that I and google could find. Close idle and remove (or rename) the .idlerc directory in your home

Re: Best way to convert number of minutes to hh:mm AM/PM?

2013-03-02 Thread andydtaylor
Brilliant, thanks to all -- http://mail.python.org/mailman/listinfo/python-list

GeoBases V5 beta release

2013-03-02 Thread geobases . dev
Hello! We just released the new beta version of GeoBases. For those who do not know GeoBases, this project provides tools to play with geographical data. It also works with non-geographical data, except for map visualizations :). There are embedded data sources in the project, but you can eas

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Devin Jeanpierre
On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: > Yes, but reply-all sends a copy to the poster as well as the list. > What I want is reply-list, acknowledging the list headers... and Gmail > simply doesn't have that. I've been replying to the poster and the list for ages. Is it bad netique

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Tim Golden
On 02/03/2013 14:53, Devin Jeanpierre wrote: On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: Yes, but reply-all sends a copy to the poster as well as the list. What I want is reply-list, acknowledging the list headers... and Gmail simply doesn't have that. I've been replying to the post

Is it correct this way to inherit from a list?

2013-03-02 Thread gialloporpora
Hi all, I would like to inherit from the list native class. really I expected that was possible to use native list method without redefining them, for example the __repr__ method. I don't know if i have made something wrong, this is my code (I obmit customized methods that I have added): fro

Re: Is it correct this way to inherit from a list?

2013-03-02 Thread Peter Otten
gialloporpora wrote: > I would like to inherit from the list native class. > really I expected that was possible to use native list method without > redefining them, for example the __repr__ method. > > I don't know if i have made something wrong, this is my code (I obmit > customized methods tha

Sorting (deeply) nested lists

2013-03-02 Thread mamboknave
I cannot resolve this on my own. Need help, please... nestedTuples = [ [ (L0t0e0, L0t0e1, L0t0e2), (L0t1e0, 2, L0t1e2), (L0t2e0, L0t2e1, L0t2e2) ], [ (L1t0e0, L1t0e1, L1t0e2), (L1t1e0, 0, L1t1e2), (L1t2e0, L1t2e1, L1t2e2) ], [ (L2t0e0, L2t0e1, L2t0e2), (L2t1e0, 1, L2t1e2), (L2t2e0, L2t2e1, L2t2e2)

Re: Is it correct this way to inherit from a list?

2013-03-02 Thread Ian Kelly
On Sat, Mar 2, 2013 at 10:22 AM, Ian Kelly wrote: > class Vector(list): > def __new__(cls, *args): > return super(Vector, cls).__new__(cls, args) > def __init__(self, *args): > super(Vector, self).__init__(args) > > The __new__ method here will receive the args in the style

Re: Is it correct this way to inherit from a list?

2013-03-02 Thread Ian Kelly
On Sat, Mar 2, 2013 at 10:02 AM, gialloporpora wrote: > Hi all, > I would like to inherit from the list native class. > really I expected that was possible to use native list method without > redefining them, for example the __repr__ method. > > I don't know if i have made something wrong, this is

Re: Sorting (deeply) nested lists

2013-03-02 Thread Peter Otten
mambokn...@gmail.com wrote: > I cannot resolve this on my own. Need help, please... > > nestedTuples = [ > [ (L0t0e0, L0t0e1, L0t0e2), (L0t1e0, 2, L0t1e2), (L0t2e0, L0t2e1, L0t2e2) > [ ], (L1t0e0, L1t0e1, L1t0e2), (L1t1e0, 0, L1t1e2), (L1t2e0, L1t2e1, > [ L1t2e2) ], (L2t0e0, L2t0e1, L2t0e2), (L2t

Dealing with exceptions

2013-03-02 Thread bvdp
Every time I write a program with exception handling (and I suppose that includes just about every program I write!) I need to scratch my brain when I create try blocks. For example, I'm writing a little program do copy specific files to a USB stick. To do the actual copy I'm using: try:

Re: Sorting (deeply) nested lists

2013-03-02 Thread mamboknave
On Saturday, March 2, 2013 9:36:43 AM UTC-8, Peter Otten wrote: > > You can also write this as > > namedTuples.sort(key=lambda item: item[1][1]) > That's exactly what I did before and got "IndexError: list index out of range". So, I thought my lambda was wrong and posted here. Now, having seen

Re: Is it correct this way to inherit from a list?

2013-03-02 Thread Rick Johnson
On Saturday, March 2, 2013 11:02:14 AM UTC-6, gialloporpora wrote: > I would like to inherit from the list native class. really > I expected that was possible to use native list method > without redefining them, for example the __repr__ method. > > [...] > > class vector(list): > def __init

Re: Dealing with exceptions

2013-03-02 Thread Kwpolska
On Sat, Mar 2, 2013 at 6:40 PM, bvdp wrote: > Every time I write a program with exception handling (and I suppose that > includes just about every program I write!) I need to scratch my brain when I > create try blocks. > > For example, I'm writing a little program do copy specific files to a US

Re: Dealing with exceptions

2013-03-02 Thread Ian Kelly
On Sat, Mar 2, 2013 at 10:40 AM, bvdp wrote: > Every time I write a program with exception handling (and I suppose that > includes just about every program I write!) I need to scratch my brain when I > create try blocks. > > For example, I'm writing a little program do copy specific files to a U

Re: How to install development package on linux?

2013-03-02 Thread Sarbjit singh
On Saturday, March 2, 2013 2:15:08 PM UTC+5:30, Kwpolska wrote: > On Sat, Mar 2, 2013 at 7:24 AM, Sarbjit singh wrote: > > > Sorry for this basic question but I am having problem compiling mod_wsgi on > > Linux. As per mod_wsgi package site, user must have python development > > package install

Re: Dealing with exceptions

2013-03-02 Thread Ian Kelly
On Sat, Mar 2, 2013 at 10:52 AM, Kwpolska wrote: > IOError and OSError should cover all copy problems, I think. And it may be worth pointing out here that as of Python 3.3, IOError is just a synonym for OSError. -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with exceptions

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 4:40 AM, bvdp wrote: > For example, I'm writing a little program do copy specific files to a USB > stick. To do the actual copy I'm using: > > try: >shutil.copy(s, os.path.join(usbpath, songname)) > except ... > > now, I need to figure out just what excepti

صور white LG nexus 4 egypt نيكسس 4 الأبيض

2013-03-02 Thread 23alagmy
صور white LG nexus 4 egypt نيكسس 4 الأبيض http://natigtas7ab.blogspot.com/2013/02/white-lg-nexus-4-egypt-4.html -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with exceptions

2013-03-02 Thread Mark Lawrence
On 02/03/2013 17:58, Ian Kelly wrote: On Sat, Mar 2, 2013 at 10:40 AM, bvdp wrote: Every time I write a program with exception handling (and I suppose that includes just about every program I write!) I need to scratch my brain when I create try blocks. For example, I'm writing a little progr

Re: Dealing with exceptions

2013-03-02 Thread bvdp
> > IOError and OSError should cover all copy problems, I think. How do you know that? I can figure it out as well by running the program, but I'd like to make the determination of what to catch when I'm writing the code. -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with exceptions

2013-03-02 Thread Devin Jeanpierre
On Sat, Mar 2, 2013 at 1:21 PM, Chris Angelico wrote: >> now, I need to figure out just what exceptions to handle. > > Here's a bit of a left-field thought: Maybe none of them. > > What are you actually doing when you get an exception? Can you > plausibly recover? If not - that is, if you're going

Re: Dealing with exceptions

2013-03-02 Thread bvdp
> > Here's a bit of a left-field thought: Maybe none of them. > Not far left at all :) > > What are you actually doing when you get an exception? Can you > > plausibly recover? If not - that is, if you're going to abort the > > whole operation anyway - then save yourself the trouble of writi

Re: Dealing with exceptions

2013-03-02 Thread Rick Johnson
On Saturday, March 2, 2013 11:40:11 AM UTC-6, bvdp wrote: > Every time I write a program with exception handling (and > I suppose that includes just about every program I write!) > I need to scratch my brain when I create try blocks. > > For example, I'm writing a little program do copy specific >

Fwd: How to install development package on linux?

2013-03-02 Thread Kwpolska
On Sat, Mar 2, 2013 at 7:00 PM, Sarbjit singh wrote: > On Saturday, March 2, 2013 2:15:08 PM UTC+5:30, Kwpolska wrote: >> On Sat, Mar 2, 2013 at 7:24 AM, Sarbjit singh wrote: >> >> > Sorry for this basic question but I am having problem compiling mod_wsgi >> > on Linux. As per mod_wsgi package s

good mail readers [was Re: [Python-ideas] string.format() default variable assignment]

2013-03-02 Thread Ethan Furman
On 03/02/2013 12:06 AM, James Griffin wrote: [- Sat 2.Mar'13 at 17:54:57 +1100 Chris Angelico :-] I also want to be able to change my mind as to whether it's reply-all/reply-list/reply-sender after typing up a reply. Guess it's time I grabbed Tbird to find out if it can do that

Re: Issue with continous incrementing of unbroken sequence for a entire working day

2013-03-02 Thread Morten Engvoldsen
Hi, Thanks to all.. this is great forum with so many good people. I have learnt a lot of Python from this forum. Hope one day i will learn enough that i can start answering in this forum.. :) Thanks again.. -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with exceptions

2013-03-02 Thread Terry Reedy
On 3/2/2013 12:40 PM, bvdp wrote: But, I know there can be other errors as well. Doing some tests, I know that certain filenames are invalid (I think a "?" or unicode char is invalid when writing to a FAT32 filesystem). And, so what exception is that? Without actually creating the error, I can't

Re: Tk MouseWheel Support

2013-03-02 Thread enidoku
that code and other mousewheel code arent working on my pc running windows 7 32bit python 2.6 and Mouse USB whats the solution ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with exceptions

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 8:23 AM, Terry Reedy wrote: open('sdjhfjshdfkjsh') > Traceback (most recent call last): > File "", line 1, in > open('sdjhfjshdfkjsh') > FileNotFoundError: [Errno 2] No such file or directory: 'sdjhfjshdfkjsh' > > Now, does shutil pass on FileNotFoundError? I wil

Re: IMAP4_SSL and OpenSSL compatibility

2013-03-02 Thread Matej Cepl
On 2013-02-26, 16:57 GMT, W. Martin Borgert wrote: > 1. Is there any plan to backport this Python >= 3.3 feature to > Python 2? No, development of Python 2 ceased to exist (only important bugfixes or security fix will happen, IIRC) If you need advanced use of SSL, use pyOpenSSL (it has be

Re: Tk MouseWheel Support

2013-03-02 Thread Mark Lawrence
On 02/03/2013 21:47, enid...@gmail.com wrote: that code and other mousewheel code arent working on my pc running windows 7 32bit python 2.6 and Mouse USB whats the solution ? Post something that we can read, or do I give up on Thunderbird? :) -- Cheers. Mark Lawrence -- http://mail.python

Re: Tk MouseWheel Support

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 10:01 AM, Mark Lawrence wrote: > On 02/03/2013 21:47, enid...@gmail.com wrote: >> >> that code and other mousewheel code arent working on my pc >> >> running windows 7 32bit python 2.6 and Mouse USB >> >> whats the solution ? >> > > Post something that we can read, or do I g

Re: Dealing with exceptions

2013-03-02 Thread Terry Reedy
On 3/2/2013 5:16 PM, Chris Angelico wrote: On Sun, Mar 3, 2013 at 8:23 AM, Terry Reedy wrote: open('sdjhfjshdfkjsh') Traceback (most recent call last): File "", line 1, in open('sdjhfjshdfkjsh') FileNotFoundError: [Errno 2] No such file or directory: 'sdjhfjshdfkjsh' Now, does shutil

Re: Tk MouseWheel Support

2013-03-02 Thread Terry Reedy
On 3/2/2013 6:01 PM, Mark Lawrence wrote: On 02/03/2013 21:47, enid...@gmail.com wrote: that code and other mousewheel code arent working on my pc running windows 7 32bit python 2.6 and Mouse USB whats the solution ? Post something that we can read, or do I give up on Thunderbird? :) In tbi

Re: Tk MouseWheel Support

2013-03-02 Thread Dave Angel
On 03/02/2013 06:01 PM, Mark Lawrence wrote: On 02/03/2013 21:47, enid...@gmail.com wrote: that code and other mousewheel code arent working on my pc running windows 7 32bit python 2.6 and Mouse USB whats the solution ? Post something that we can read, or do I give up on Thunderbird? :)

Re: Dealing with exceptions

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 10:08 AM, Terry Reedy wrote: > On 3/2/2013 5:16 PM, Chris Angelico wrote: >> >> On Sun, Mar 3, 2013 at 8:23 AM, Terry Reedy wrote: >> >> open('sdjhfjshdfkjsh') >>> >>> Traceback (most recent call last): >>>File "", line 1, in >>> open('sdjhfjshdfkjsh') >>>

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Steven D'Aprano
On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: > On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: >> Yes, but reply-all sends a copy to the poster as well as the list. What >> I want is reply-list, acknowledging the list headers... and Gmail >> simply doesn't have that. > > I'v

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Roy Smith
In article <513298fa$0$30001$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: > On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: > > > On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: > >> Yes, but reply-all sends a copy to the poster as well as the list. What > >> I

Re: Dealing with exceptions

2013-03-02 Thread Steven D'Aprano
On Sat, 02 Mar 2013 18:52:19 +0100, Kwpolska wrote: > Also, you can do `except:` for a catch-all, but it is discouraged unless > you have REALLY good reasons to do this. And, most of the time, you > don’t. `except Exception` is to be much preferred over a bare except. It excludes KeyboardInter

Re: Dealing with exceptions

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 11:41 AM, Steven D'Aprano wrote: > But yes, in general, only catch the minimum you *know* you need to catch > and can deal with. Anything else is a bug in your code that needs to be > fixed, and you can't fix it if you never see the exception. With the exception (if you'll

RLock IO bound?

2013-03-02 Thread juancarlo . anez
Hello, I have a set of processes that bring any number of cores to 100% use when unsynchronized (they take independent jobs from a queue). As soon as I add an RLock to handle shared access to a file-system directory, the CPU utilization drops to 60%. I'm not talking about overall speed here, b

Re: Dealing with exceptions

2013-03-02 Thread Steven D'Aprano
On Sat, 02 Mar 2013 11:35:13 -0800, bvdp wrote: >> IOError and OSError should cover all copy problems, I think. > > How do you know that? I can figure it out as well by running the > program, but I'd like to make the determination of what to catch when > I'm writing the code. In my experience,

Pygame mouse cursor load/unload

2013-03-02 Thread Alex Gardner
I am in the process of making a pong game in python using the pygame library. My current problem is that when I move the mouse, it turns off as soon as the mouse stops moving. The way I am doing this is by making the default cursor invisible and using .png files as replacements for the cursor.

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread David Robinow
On Sat, Mar 2, 2013 at 7:27 PM, Steven D'Aprano wrote: > On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: > >> On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: >>> Yes, but reply-all sends a copy to the poster as well as the list. What >>> I want is reply-list, acknowledging the l

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Roy Smith
In article , David Robinow wrote: > On Sat, Mar 2, 2013 at 7:27 PM, Steven D'Aprano > wrote: > > On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: > > > >> On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: > >>> Yes, but reply-all sends a copy to the poster as well as the list. W

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread David Robinow
On Sat, Mar 2, 2013 at 9:15 PM, Roy Smith wrote: > In article , > David Robinow wrote: > >> On Sat, Mar 2, 2013 at 7:27 PM, Steven D'Aprano >> wrote: >> > On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: >> > >> >> On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico wrote: >> >>> Yes, bu

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 2:01 PM, David Robinow wrote: > On Sat, Mar 2, 2013 at 9:15 PM, Roy Smith wrote: >> There's a number of advantages to news vs. mail. The biggest is that >> news spools generally keep a long history around, so it's easy to go >> back and review a long thread. > That can't

Re: Pygame mouse cursor load/unload

2013-03-02 Thread Ian Kelly
On Sat, Mar 2, 2013 at 6:56 PM, Alex Gardner wrote: > I am in the process of making a pong game in python using the pygame library. > My current problem is that when I move the mouse, it turns off as soon as > the mouse stops moving. The way I am doing this is by making the default > cursor i

Question about Tashaphyne package in python

2013-03-02 Thread yomnasalah91
I have a Python code that take an Arabic word and get the root and also remove diacritics, but i I have a problem with the output. For example : when the input is "العربيه" the output is:"عرب" which is right answer but when the input is "كاتب" the output is:"ب", and when the input is "يخاف" the

Re: Is it correct this way to inherit from a list?

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 1:30 PM, gialloporpora wrote: > Risposta al messaggio di Rick Johnson : > > >> What are you trying to achieve exactly? > > > > I would like to implement a class (vector) to works with vectors, for > example using scalar multiplication: > a*v = [a*v1, a*vn] > and a dual class

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Steven D'Aprano
On Sat, 02 Mar 2013 19:42:50 -0500, Roy Smith wrote: > In article <513298fa$0$30001$c3e8da3$54964...@news.astraweb.com>, > Steven D'Aprano wrote: > >> On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: >> >> > On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico >> > wrote: >> >> Yes, but

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Steven D'Aprano
On Sat, 02 Mar 2013 21:11:04 -0500, David Robinow wrote: > On Sat, Mar 2, 2013 at 7:27 PM, Steven D'Aprano > wrote: >> On Sat, 02 Mar 2013 09:53:47 -0500, Devin Jeanpierre wrote: >> >>> On Sat, Mar 2, 2013 at 1:54 AM, Chris Angelico >>> wrote: Yes, but reply-all sends a copy to the poster a

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread David Robinow
On Sat, Mar 2, 2013 at 10:06 PM, Chris Angelico wrote: > On Sun, Mar 3, 2013 at 2:01 PM, David Robinow wrote: >> On Sat, Mar 2, 2013 at 9:15 PM, Roy Smith wrote: >>> There's a number of advantages to news vs. mail. The biggest is that >>> news spools generally keep a long history around, so it'

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Chris Angelico
On Sun, Mar 3, 2013 at 2:18 PM, David Robinow wrote: > On Sat, Mar 2, 2013 at 10:06 PM, Chris Angelico wrote: >> But your mail has only what you receive. You have to hunt down a >> separate archive of what was posted before you joined the thread. >> Advantage goes to news, but a slight one, and i

Re: Pygame mouse cursor load/unload

2013-03-02 Thread Alex Gardner
On Saturday, March 2, 2013 9:08:18 PM UTC-6, Ian wrote: > On Sat, Mar 2, 2013 at 6:56 PM, Alex Gardner wrote: > > > I am in the process of making a pong game in python using the pygame > > library. My current problem is that when I move the mouse, it turns off as > > soon as the mouse stops mo

Re: [Python-ideas] string.format() default variable assignment

2013-03-02 Thread Devin Jeanpierre
On Sat, Mar 2, 2013 at 10:21 PM, Steven D'Aprano wrote: > How the flying fuck does my choice of where and how *I* read this forum > inconvenience YOU? > > Talk about an overactive sense of entitlement. The world does not revolve > around you and I do not arrange my day to suit your preferences. I

Re: How to install development package on linux?

2013-03-02 Thread Sarbjit singh
On Sunday, March 3, 2013 1:22:50 AM UTC+5:30, Kwpolska wrote: > On Sat, Mar 2, 2013 at 7:00 PM, Sarbjit singh wrote: > > > On Saturday, March 2, 2013 2:15:08 PM UTC+5:30, Kwpolska wrote: > > >> On Sat, Mar 2, 2013 at 7:24 AM, Sarbjit singh > >> wrote: > > >> > > >> > Sorry for this basic que

Re: How to install development package on linux?

2013-03-02 Thread Benjamin Kaplan
On Sat, Mar 2, 2013 at 10:14 PM, Sarbjit singh wrote: > > I searched on google and found these errors could be due to missing python > header files which would be available in development package. > > So I am struggling to make it work. A "development package" is meaningless when you aren't ins

Re: RLock IO bound?

2013-03-02 Thread Cameron Simpson
On 02Mar2013 17:35, juancarlo.a...@gmail.com wrote: | I have a set of processes that bring any number of cores to 100% | use when unsynchronized (they take independent jobs from a queue). | | As soon as I add an RLock to handle shared access to a file-system | directory, the CPU utilization drops

Re: How to install development package on linux?

2013-03-02 Thread Sarbjit singh
On Sunday, March 3, 2013 11:53:50 AM UTC+5:30, Benjamin Kaplan wrote: > On Sat, Mar 2, 2013 at 10:14 PM, Sarbjit singh wrote: > > > > > > I searched on google and found these errors could be due to missing python > > header files which would be available in development package. > > > > > > So

Re: How to install development package on linux?

2013-03-02 Thread Sarbjit singh
On Sunday, March 3, 2013 12:09:46 PM UTC+5:30, Sarbjit singh wrote: > On Sunday, March 3, 2013 11:53:50 AM UTC+5:30, Benjamin Kaplan wrote: > > > On Sat, Mar 2, 2013 at 10:14 PM, Sarbjit singh > > wrote: > > > > > > > > > > > > > > I searched on google and found these errors could be due t

Re: i need help

2013-03-02 Thread Michael Torrie
On 02/21/2013 03:18 AM, leonardo wrote: > thanks, problem solved Apparently not. The shift key on your keyboard still seems to be non-functional. ;) -- http://mail.python.org/mailman/listinfo/python-list