I have a encountered a new problem.

2017-05-01 Thread SUMIT SUMAN
I have encountered a problem while opening the Python 3.6.1 IDLE The error message is this- [image: Inline image 1] -- https://mail.python.org/mailman/listinfo/python-list

One more problem that.....................

2017-04-27 Thread SUMIT SUMAN
The C runtime Update(KB2999226) in Python 3.6.1 installation is taking very much time to complete , what can I do? Please help!!! -- https://mail.python.org/mailman/listinfo/python-list

I encounter a problem during installations!!!

2017-04-26 Thread SUMIT SUMAN
I have reinstall windows 8.1 for some reasons, and when I installed Python 3.6.1 then, it shows error that"The program can't start because api-ms-win-crt-runtime-I1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem." Please,help me!!! -- https://mail.python.or

Re: urllib2 redirect error

2014-09-06 Thread Sumit Ray
Steven, Thank you! User advice was on point. Sumit On Tue, Sep 2, 2014 at 11:29 PM, dieter wrote: > Steven D'Aprano writes: > > ... > > I'm not an expert, but that sounds like a fault at the server end. I just > > tried it in Chrome, and it worked, and the

urllib2 redirect error

2014-09-01 Thread Sumit Ray
-- snip - I'm fresh out of ideas and any suggestions you may have would be greatly appreciated. Thanks in advance, Sumit -- https://mail.python.org/mailman/listinfo/python-list

urllib2 redirect error

2014-09-01 Thread Sumit Ray
Hi, I've tried various versions but continue to get the following error: -- https://mail.python.org/mailman/listinfo/python-list

Re: How to make a Python script to audio read a text file on phone ?

2013-03-17 Thread dey . sumit . kr
On Sunday, March 17, 2013 7:34:18 PM UTC+5:30, Nic wrote: > I've installed Python on my Nokia E71 (Symbian S60 3rd FP1) and found a > script example which can read out text, see example below. > > I want to make the script to asks me for a text file instead and then reads > out the content. I g

Python 2 or 3 ? with Django , My SQL and YUI

2011-02-21 Thread Sumit
Python 2 or 3 ? with Django , My SQL and YUI For a web project We have decided to work on Python 2 or 3 ? with Django , My SQL and YUI, and this would be the first time to work with Python, just now I explored a little and found Python -2 vs 3 Stuff , Is there experienced python dev can guide me

easy n perfect earning

2010-08-24 Thread sumit
hey guys try dis link n make account...click on view adds...click on every add n leave it 4 60sec n once cmpleted click on my account n u vl c tat u got $40.. http://www.fineptc.com/index.php?ref=sumit4u2010 ...must try...i hav experienced and its safe -- http://mail.python.org/mailman/listinfo/

problem

2009-08-08 Thread sumit
i want 2 hav the header files for regular expression to non deterministin autometa so whr should i find it?plz help -- http://mail.python.org/mailman/listinfo/python-list

Re: while-loops enter the last time after condition is filled?

2008-04-06 Thread Sumit
On Apr 6, 4:53 am, [EMAIL PROTECTED] wrote: > it seems to me from my results that when i use a while-loop it will > execute once after the condition is met. Perhaps your condition is wrong. Please provide the code where this occured. -- http://mail.python.org/mailman/listinfo/python-list

splitting a words of a line

2007-12-06 Thread Sumit
C=customer,DC=rxcorp,DC=com" GET /mci/performance/SelectProducts.aspx?p=0&V=C&a=29&menu=adhoc d4b62ca2-09a0-4334622b-0e1c-03c42ba5 0 i am trying to use re.split() method to split them , But unable to get the exact result . Any help on th

Re: 10060, 'Operation timed out'

2006-01-19 Thread Sumit Acharya
Ok, so need to see on the server side. -- http://mail.python.org/mailman/listinfo/python-list

Re: 10060, 'Operation timed out'

2006-01-19 Thread Sumit Acharya
Hi Steve, this is the trace I have got:- Traceback (most recent call last): File "sumit1.py", line 39, in ? ftp.connect(host,port) File "C:\programs\packages\python24\lib\ftplib.py", line 129, in connect raise socket.error, msg socket.error: (10060, 'Operation timed out') -- http://ma

Re: 10060, 'Operation timed out'

2006-01-18 Thread Sumit Acharya
Hi Steve, Thanks, I have started the run without try and except block, I will update with the findings tomm. Please keep this thread on for you so that I can get the solution -- http://mail.python.org/mailman/listinfo/python-list

Re: 10060, 'Operation timed out'

2006-01-18 Thread Sumit Acharya
After 20 seconds only. -- http://mail.python.org/mailman/listinfo/python-list

Re: 10060, 'Operation timed out'

2006-01-18 Thread Sumit Acharya
Hi Steve, It didnt help, i am getting same error. -- http://mail.python.org/mailman/listinfo/python-list

Re: 10060, 'Operation timed out'

2006-01-18 Thread Sumit Acharya
can u please modify the script that i have posted with your suggestion, it will help me to a certain extent. Thanks -- http://mail.python.org/mailman/listinfo/python-list

10060, 'Operation timed out'

2006-01-17 Thread Sumit Acharya
I am using following script to connect to the server and i try the connection for 1000 times. Some times it succeeds for all the 1000 times,but some times it fails with error:- 10060, 'Operation timed out'. When it fails with the abover error, it seems timed out time is 20 seconds. Is there a way I

Re: Needed class whose instances are many test cases

2005-11-15 Thread Sumit
Thanks for comments .setup() is going the Run Before every testcase Run. But i need to create resource for set of testcases , it is one time only . I can not create at every instant before testcases Run . thats why Unittest.testsuit is goingto help me out . There __init__() can be Run One time and

Needed class whose instances are many test cases

2005-11-11 Thread Sumit
I have scinario like I have to Create resource(in __init__()) Before Running a set of testcases and then In Testcases resources are going to used and then It will cleared off after Running the testcases by destructor __del__() import unittest import time class app_adminfunc(unittest.TestCase):