[Python-announce] PyCon India 2021 videos are available now.

2021-12-25 Thread Chandan Kumar
=PL6GW05BfqWIerlriJKq-o5aKB4luR3xkN Keep watching, Happy Holidays and see you all in the next edition of PyCon India :-) Thanks, Chandan Kumar ___ Python-announce-list mailing list -- python-announce-list@python.org To unsubscribe send an email to python

PyCon India 2021: The Workshop & Talk schedule is out!

2021-08-02 Thread Chandan Kumar
ions or suggestions, Do reach out to us on Zulip: https://pyconindia.zulipchat.com/ Please help us spread this message by sharing it on your social networks as widely as possible. Thank you! Tweet Link: https://twitter.com/pyconindia/status/1422177552777375746 With Regards, Chandan Kumar On behalf of P

PyCon India 2021 Keynote: Luciano Ramalho

2021-07-01 Thread Chandan Kumar
networks as widely as possible. Thank you ! Tweet: https://twitter.com/pyconindia/status/1410587645831376905 Thanks, Chandan Kumar ___ Python-announce-list mailing list -- python-announce-list@python.org To unsubscribe send an email to python-announce-list-le

PyCon India 2021: Call for In-kind Sponsors is open now.

2021-06-22 Thread Chandan Kumar
Sep, 2021 Conference tickets are open now, Grab it from here: https://in.pycon.org/2021/ Have any questions or suggestions, Do reach out to us on Zulip: https://pyconindia.zulipchat.com/ Thanks, Chandan Kumar ___ Python-announce-list mailing list

PyCon India 2021: Call for Proposals (CFP) extended until May 22nd

2021-05-17 Thread Chandan Kumar
to us on Zulip: https://pyconindia.zulipchat.com/ Thanks, Chandan Kumar ___ Python-announce-list mailing list -- python-announce-list@python.org To unsubscribe send an email to python-announce-list-le...@python.org https://mail.python.org/mailman3/lists

Announcing PyCon India 2021 Online

2021-02-25 Thread Chandan Kumar
Hello everyone, I am Chandan Kumar, from Python India Community. I would like to officially announce the 13th iteration of PyCon India[1] for 2021. Considering the health and safety of everyone involved, PyCon India 2021 will be taking place online as a 4-day event on Hopin[2] from 16th to 19th

[issue37464] multiple comparison

2019-07-01 Thread Chandan Kumar
Change by Chandan Kumar : -- type: enhancement -> behavior ___ Python tracker <https://bugs.python.org/issue37464> ___ ___ Python-bugs-list mailing list Un

[issue37464] multiple comparison

2019-07-01 Thread Chandan Kumar
New submission from Chandan Kumar : a=1.0 b=0.0 c=0.0 if (a> d and b): print('hi') else: print("bye") its going to else part a=1.0 b=0.1 c=0.2 then its going to if part a==1.0 b=0 c=0.1 then again its going to else part -- assignee: docs@python components:

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

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-18 Thread Chandan kumar
Changes by Chandan kumar <chkumar...@gmail.com>: -- pull_requests: +119 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue10938> ___

[issue19180] some RFC references could be updated

2017-02-18 Thread Chandan kumar
Chandan kumar added the comment: I have updated the RFC references from [0] to [2]. I am not able to find out the TLS links mentioned in the https://docs.python.org/3.4/library/ssl.html. I have attached the pull request. -- nosy: +chkumar246

[issue22671] Typo in class io.BufferedIOBase docs

2014-12-19 Thread Chandan kumar
Changes by Chandan kumar chkumar...@gmail.com: -- nosy: +Chandan.kumar ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22671 ___ ___ Python-bugs

[issue21196] Name mangling example in Python tutorial

2014-04-14 Thread Chandan Kumar
Chandan Kumar added the comment: Uploading the patch for the improvement to the name mangling section of the Python tutorial. Please note that the modification is much smaller than I proposed earlier. -- keywords: +patch Added file: http://bugs.python.org/file34814

[issue21196] Name mangling example in Python tutorial

2014-04-10 Thread Chandan Kumar
New submission from Chandan Kumar: The example used for demonstrating name mangling could be better if two versions of code are shown - one with name mangling and one without. I have modified the original example to incorporate this (see attached). -- assignee: docs@python components

[issue21196] Name mangling example in Python tutorial

2014-04-10 Thread Chandan Kumar
Chandan Kumar added the comment: Adding the second code sample, since only one attachment allowed at one go. -- Added file: http://bugs.python.org/file34782/without_name_mangling.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue21196] Name mangling example in Python tutorial

2014-04-10 Thread Chandan Kumar
Chandan Kumar added the comment: Here is a link to the documentation section in question: https://docs.python.org/2/tutorial/classes.html#private-variables-and-class-local-references -- ___ Python tracker rep...@bugs.python.org http

Re: Query on Python Compiled source--Urgent

2013-10-14 Thread chandan kumar
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 source. 1.There are 5 different test suites under the project

Re: Query on Python Compiled source--Urgent

2013-10-14 Thread chandan kumar
2013 1:10 PM, Tim Golden m...@timgolden.me.uk 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 source

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.

Accessing class attribute

2013-09-12 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

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    

Python Debugger tool

2013-09-06 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

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'm

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-21 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()

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. 

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-23 Thread chandan kumar
Thanks Phil,You are right .with Port=20 it started working. Regards,Chandan. --- On Mon, 22/4/13, Phil Birkelbach p...@petrasoft.net wrote: From: Phil Birkelbach p...@petrasoft.net Subject: Re: Serial Port Issue To: python-list@python.org Cc: chandan kumar chandan_...@yahoo.co.in Date: Monday

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