[issue4442] document immutable type subclassing via __new__

2021-08-20 Thread Gautam Chaudhuri


Change by Gautam Chaudhuri :


--
nosy: +quantum

___
Python tracker 
<https://bugs.python.org/issue4442>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44903] [Doc] How does one to about getting onto the "Other Graphical User Interface Packages" page?

2021-08-13 Thread Gautam Chaudhuri


Gautam Chaudhuri  added the comment:

I've submitted a PR making the changes suggested by Terry. Any
feedback/suggestions on the PR would be highly appreciated.

--

Gautam Chaudhuri

--

___
Python tracker 
<https://bugs.python.org/issue44903>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44903] [Doc] How does one to about getting onto the "Other Graphical User Interface Packages" page?

2021-08-13 Thread Gautam Chaudhuri


Change by Gautam Chaudhuri :


--
keywords: +patch
pull_requests: +26238
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/27762

___
Python tracker 
<https://bugs.python.org/issue44903>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44903] [Doc] How does one to about getting onto the "Other Graphical User Interface Packages" page?

2021-08-13 Thread Gautam Chaudhuri


Change by Gautam Chaudhuri :


--
nosy: +quantum

___
Python tracker 
<https://bugs.python.org/issue44903>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16580] [doc] Add examples to int.to_bytes and int.from_bytes

2021-08-13 Thread Gautam Chaudhuri


Change by Gautam Chaudhuri :


--
pull_requests: +26236
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/27760

___
Python tracker 
<https://bugs.python.org/issue16580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16580] [doc] Add examples to int.to_bytes and int.from_bytes

2021-08-11 Thread Gautam Chaudhuri


Gautam Chaudhuri  added the comment:

I've rewritten woparry's patch so that it targets the current codebase as well 
as fixing the issues that Mark mentioned. It appears that the range checks on 
`to_bytes` have already been added to the documentation so I haven't added 
those.

Should a separate issue be raised for the behaviour of `int.from_bytes(b'', 
, signed=True')`? I think it's out of scope for this issue.

--
nosy: +quantum
Added file: https://bugs.python.org/file50210/issue16580.patch

___
Python tracker 
<https://bugs.python.org/issue16580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42456] Logical Error

2020-12-08 Thread Nishant Gautam


Nishant Gautam  added the comment:

a = 10

b = 10


if (a >= b) & (a & b) & (a == b):

print("Yes")

else:

print("No")

Output: No

This is the bug because all then condition in if is true but it print No, This 
is the vulnerability of this code.

--
resolution: not a bug -> 
status: closed -> open
versions: +Python 3.6, Python 3.7, Python 3.9
Added file: https://bugs.python.org/file49662/main.py

___
Python tracker 
<https://bugs.python.org/issue42456>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42490] Business Logical Error

2020-11-28 Thread Nishant Gautam


Change by Nishant Gautam :


--
type:  -> security

___
Python tracker 
<https://bugs.python.org/issue42490>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42490] Business Logical Error

2020-11-28 Thread Nishant Gautam


New submission from Nishant Gautam :

Python does not understand not condition

--
files: main.py
messages: 381987
nosy: Kshitish
priority: normal
severity: normal
status: open
title: Business Logical Error
versions: Python 3.8
Added file: https://bugs.python.org/file49630/main.py

___
Python tracker 
<https://bugs.python.org/issue42490>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42488] Mathematical error

2020-11-27 Thread Nishant Gautam


New submission from Nishant Gautam :

Python language have some to solve mathematical problem. It gives wrong answer. 
This is the vulnerability, if you think this the vulnerability for your 
language. Remember this is the mathematical error and no computer language 
effort this. Otherwise it depends on you. Thank you

--
files: main.py
messages: 381983
nosy: Kshitish
priority: normal
severity: normal
status: open
title: Mathematical error
versions: Python 3.8
Added file: https://bugs.python.org/file49629/main.py

___
Python tracker 
<https://bugs.python.org/issue42488>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42462] Unacceptable Output

2020-11-25 Thread Nishant Gautam


Change by Nishant Gautam :


Added file: https://bugs.python.org/file49622/Screenshot 2020-11-25 181647.png

___
Python tracker 
<https://bugs.python.org/issue42462>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42462] Unacceptable Output

2020-11-25 Thread Nishant Gautam


New submission from Nishant Gautam :

Wrong Output

--
components: Windows
files: Screenshot 2020-11-25 161636.png
messages: 381821
nosy: Kshitish, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Unacceptable Output
type: behavior
versions: Python 3.8
Added file: https://bugs.python.org/file49621/Screenshot 2020-11-25 161636.png

___
Python tracker 
<https://bugs.python.org/issue42462>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42460] Wrong Output

2020-11-25 Thread Nishant Gautam


Change by Nishant Gautam :


Added file: https://bugs.python.org/file49620/Logic.jpg

___
Python tracker 
<https://bugs.python.org/issue42460>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42460] Wrong Output

2020-11-25 Thread Nishant Gautam


New submission from Nishant Gautam :

The python give wrong output

--
files: PROOF.jpg
messages: 381806
nosy: Kshitish
priority: normal
severity: normal
status: open
title: Wrong Output
type: behavior
versions: Python 3.8
Added file: https://bugs.python.org/file49619/PROOF.jpg

___
Python tracker 
<https://bugs.python.org/issue42460>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42459] Wrong Output

2020-11-25 Thread Nishant Gautam


New submission from Nishant Gautam :

The Python language  does not the program

--
components: Windows
files: PROVE.jpg
messages: 381797
nosy: Kshitish, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Wrong Output
type: crash
versions: Python 3.8
Added file: https://bugs.python.org/file49618/PROVE.jpg

___
Python tracker 
<https://bugs.python.org/issue42459>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42456] Logical Error

2020-11-24 Thread Nishant Gautam


New submission from Nishant Gautam :

The python programming give wrong output. If any algorithm develop in python 
then, may be that will be affected by this.

--
files: 0_PROOF.png
hgrepos: 394
messages: 381787
nosy: Kshitish
priority: normal
severity: normal
status: open
title: Logical Error
type: behavior
versions: Python 3.8
Added file: https://bugs.python.org/file49617/0_PROOF.png

___
Python tracker 
<https://bugs.python.org/issue42456>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38313] Crash/No start

2019-09-28 Thread Gautam


New submission from Gautam :

Hi
Python in my Laptop used to work well but now a days i is not working in fact 
it wont even start. Even after pressing it for half an hour no screen would 
appear 
pls check

--
components: Windows
messages: 353482
nosy: Rick Grimes, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Crash/No start
type: crash
versions: Python 3.6

___
Python tracker 
<https://bugs.python.org/issue38313>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-11-18 Thread Shivank Gautam


Shivank Gautam  added the comment:

Hey Tal, I am extremely sorry for all delay. actually, due to internship and my 
university exams, I am unable to dedicate my time to bug(#35052). please 
consider it and you can tell Charalampos Stratakis in the bug to push his 
prepared pull request.
I hope you will be still supportive when I will return in mid-dec after 
completing my exams.

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-30 Thread Shivank Gautam


Shivank Gautam  added the comment:

I just want to update that i was not able to work more in last two days as i 
was busy in some personal work. now i am on it and will update something soon. 
Sorry for delay :)

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-26 Thread Shivank Gautam


Shivank Gautam  added the comment:

I See, I need to find out for what test case `_clone_node()` will show 
unexpected behaviour, which will verify that it is a bug and we also need a 
test code to in test_minidom.py just to verify the behaviour.
am I going in right direction Tai?

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

Oh Sorry, it was like was more like a question.
running test_minidom.py is giving an error for both (1 and 2), i am not sure 
even if "testRemoveAttributeNode (__main__.MinidomTest)" is related to 
_clone_node or not.

should i first try solve for this error? or maybe i haven't understood what 
type of test function i need to write.

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

now when I am running test_minidom.py for both 1,2
1: e._call_user_data_handler(operation, n, entity)
2: n._call_user_data_handler(operation, n, notation)

I am receiving the same following result.


FAIL: testRemoveAttributeNode (__main__.MinidomTest)
--
Traceback (most recent call last):
  File "test_minidom.py", line 328, in testRemoveAttributeNode
self.assertIs(node, child.removeAttributeNode(node))
AssertionError:  is not None

--
Ran 120 tests in 0.048s

FAILED (failures=1)

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

>I want to help in
*need help in

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

Oh, I see, so I believe that's where my learning of CPython is going to start.
can anyone help me in completing this? what I understood till now is in 
minidom.py we need to change line 1924. else it, we need to create a test. I 
want to help in what should a test include and do we need to create a new 
function for it in test_minidom.py?

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

*1924-->   n._call_user_data_handler(operation, n, notation)

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

Thanks, Charalampos :)
I would be thankful if you or Serhiy can help me a little bit.
so do I need to just do the following work?


1924--> n._call_user_data_handler(operation, n, entity)

--

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35052] Coverity scan: copy/paste error in Lib/xml/dom/minidom.py

2018-10-25 Thread Shivank Gautam


Shivank Gautam  added the comment:

Hey,
I am starting my journey with the contribution to CPython. and this is i think 
i can do these changes. if Charalampos is not there to work on it. i would like 
to try this.

--
nosy: +shivank98

___
Python tracker 
<https://bugs.python.org/issue35052>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --" text in pager module

2017-07-08 Thread Gautam krishna.R

Gautam krishna.R added the comment:

Thank you! closing this due to inncativity..

--
stage:  -> resolved
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --" text in pager module

2017-05-27 Thread Gautam krishna.R

Gautam krishna.R added the comment:

Yes even if it was built for PyDoc why cant we can extend its functionality to 
make it work with others too, Without breaking its current functionality...

--

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --" text in pager module

2017-05-23 Thread Gautam krishna.R

Gautam krishna.R added the comment:

While i was working on one of my personal project i thought of using pager 
module for piping the output in the terminal, please see the issue:
https://github.com/gautamkrishnar/socli/issues/46

Adding ability to modify "-- more --" (statically specified text will allow us 
to change its value to something like "- Press enter to see more..." or any 
other value...

--

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --" text in pager module

2017-05-23 Thread Gautam krishna.R

Changes by Gautam krishna.R :


--
pull_requests: +1857

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --" text in pager module

2017-05-23 Thread Gautam krishna.R

New submission from Gautam krishna.R:

Need ability to change the text

--
components: +Library (Lib)
title: Add ability to change "-- more -- -> Add ability to change "-- more --" 
text in pager module
type:  -> enhancement

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30444] Add ability to change "-- more --

2017-05-23 Thread Gautam krishna.R

Changes by Gautam krishna.R :


--
nosy: Gautam krishna.R
priority: normal
severity: normal
status: open
title: Add ability to change "-- more --

___
Python tracker 
<http://bugs.python.org/issue30444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com