missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Chandan Kumar Abhimanyu
how I download and install api-ms-win-crt-runtime-|1-1-0.dll when I am downloading by googling it is not installable file. -- *Chandan Kumar Abhimanyu* *+91 9876852058* *Department of Management Studies,* *Indian Institute of Technology (ISM), Dhanbad, * *Jharkhand- 826004, India.* -- https

Re: Query on Python Compiled source--Urgent

2013-10-14 Thread chandan kumar
2013 1:10 PM, Tim Golden wrote: On 14/10/2013 06:41, chandan kumar wrote: > I'm working on a python project for protocol testing.I need to provide > only python compiled source to our customer. > > Here are the steps followed to take python compiled from actual sourc

Re: Query on Python Compiled source--Urgent

2013-10-14 Thread chandan kumar
/2013 06:41, chandan kumar wrote: > I'm working on a python project for protocol testing.I need to provide > only python compiled source to our customer. > > Here are the steps followed to take python compiled from actual source. > 1.There are 5 different test suites under the pr

Query on Python Compiled source--Urgent

2013-10-13 Thread chandan kumar
Hi, I'm working on a python project for protocol testing.I need to provide only python compiled source to our customer. Here are the steps followed to take python compiled from actual source. 1.There are 5 different test suites under the project 2..Run all 5  test suite with python sources. 3.Af

Accessing class attribute

2013-09-11 Thread chandan kumar
Hi , I'm new to python ,please correct me if there is any thing wrong with the way accessing class attributes. Please see the below code .I have inherited confid in ExpectId class, changed self.print_msg to Hello. Now inherited confid in TestprintmsgID class.Now I wanted to print self.print

global variable across modules

2013-09-11 Thread chandan kumar
Hi , I'm trying to understand using global variable across different modules.Here is what i have tried so far without much success.Please ignore any indentation issue  in the below code. Filename:Test1.py Debug_Value = " " import Test2 def globalValmethod():     global Debug_Value     Debug

Python Debugger tool

2013-09-05 Thread chandan kumar
Hi Is any one aware of free ipython debugger tool.How good is this tool for a beginner to use like ,placing breakpoints,checking variables ,call stack (function flow) etc.I don't like to use python PDB . I have heard about wingware ,pycharm which are licensed versions.Used wingware trail ve

Python Global variable

2013-08-26 Thread chandan kumar
Hi all, Please see the below code,in which i'm verifying the global value in python. CHK=10 def test1(): print "Value of CHK in test1",CHK def test2(): CHK=40 print "Value of CHK in test2",CHK test1() def test3(): global CHK test2() test3() When i ran above code ,I

Re: Basic Python Query

2013-08-22 Thread chandan kumar
Hi all, Sorry for not explaining question properly.Here Its not about threading and dont worry about any indentations.Please see below example class Call_Constructor(): def __init__(self): print "In __init__ " class Test_Constructor(Call_Constructor): def method(self):

Basic Python Query

2013-08-20 Thread chandan kumar
Hi all, Please see the below code. class Test(threading.Thread):           def StartThread(self):        Lock = threading.Lock()         self.start()    class Test1(threading.Thread):     def __init__(self):         threading.Thread.__init__ ( self )         self.Lock = threading.Lock() self.st

Verifying Variable value

2013-08-14 Thread chandan kumar
Hi , Is there a way to validate variable values while debugging any python code.Run below example  in debugging mode and i would like to know the value of c (I know print is an option) with any other option other than printing. In C# or some other tools we can verify each statement and values. I

Urgent:Serial Port Read/Write

2013-05-09 Thread chandan kumar
Hi all,I'm new to python and facing issue using serial in python.I'm facing the below error      ser.write(port,command)NameError: global name 'ser' is not defined Please find the attached script and let me know whats wrong in my script and also how can i read data from serial port for the  same

Re: Serial Port Issue

2013-04-22 Thread chandan kumar
Thanks Phil,You are right .with Port=20 it started working. Regards,Chandan. --- On Mon, 22/4/13, Phil Birkelbach wrote: From: Phil Birkelbach Subject: Re: Serial Port Issue To: python-list@python.org Cc: "chandan kumar" Date: Monday, 22 April, 2013, 8:43 PM Have you tried 

Serial Port Issue

2013-04-22 Thread chandan kumar
Hi, I'm new to python and trying to learn serial communication using python.In this process i'm facing serial port issues.Please find the attached COMPorttest.py file ,correct me if anything wrong in the code.With my code it's always goes in to exception.I noted down the the COM port number  fro