[issue30270] Remove sqlite3.Cache display method

2018-07-23 Thread Berker Peksag
Berker Peksag added the comment: Closing this as 'rejected' for the reasons given by Brett and David. Thanks for working on this! -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker

[issue34193] Fix pluralization in TypeError messages in getargs.c

2018-07-23 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : This ticket is to address comments by @terry.reedy on GitHub for PR https://github.com/python/cpython/pull/8395. Ref : https://github.com/python/cpython/pull/8395#issuecomment-406894241 Tests: In the 3 tests before this, the suffix 0, 2, or 3 is

For next loops

2018-07-23 Thread no
x = range (5) y = range (5) for ply in x: for com in y: if ply==com: result="Tie" print(ply,com,result) Why is ply always equal to com? 0 0 Tie 0 1 Tie 0 2 Tie 0 3 Tie 0 4 Tie 1 0 Tie 1 1 Tie 1 2 Tie 1 3 Tie 1 4 Tie 2 0 Tie 2 1 Tie 2 2 Tie 2 3 Tie 2 4 Tie 3 0 Tie 3

[issue21950] import sqlite3 not running after configure --prefix=/alt/path; make; make install

2018-07-23 Thread Berker Peksag
Berker Peksag added the comment: Closing this for now since we couldn't reproduce the problem and haven't heard back from the OP in a while. -- resolution: -> works for me stage: -> resolved status: open -> closed type: -> behavior ___ Python

Re: coding style - where to declare variables

2018-07-23 Thread Abdur-Rahmaan Janhangeer
variables here refers to the user experience of a var np, just a link to the thread/s would mark the end of it Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Error installing scripts in python 37-32

2018-07-23 Thread Mark Lawrence
On 22/07/18 14:04, ojas gupta wrote: Explaining the whole scenario in detail : I open command prompt and go to C: then I enter "pip install mysqlclient" (Double inverted commas is just for highlights .) After pressing enter key it installs some data and after a while an error comes up saying

Re: coding style - where to declare variables

2018-07-23 Thread Mark Lawrence
On 22/07/18 14:51, Abdur-Rahmaan Janhangeer wrote: except local vars Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ Mauritius Python doesn't have variables, it has names. Please can we avoid a long meaningless thread on this subject as it's been discussed a trillion times

<    1   2   3