Change by Chandan Kumar :
--
type: enhancement -> behavior
___
Python tracker
<https://bugs.python.org/issue37464>
___
___
Python-bugs-list mailing list
Un
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
co
Changes by Chandan kumar :
--
pull_requests: +119
___
Python tracker
<http://bugs.python.org/issue10938>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Chandan kumar :
--
nosy: +Chandan.kumar
___
Python tracker
<http://bugs.python.org/issue22671>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
<http://bugs.python.org/issue21
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
<http://bugs.python.org/issue21
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