[issue43157] Bug in methods of creating the 2d list

2021-02-07 Thread sandeep kumar
sandeep kumar added the comment: def generateMatrix(A): d=A-1 data=1 B=[[0]*A]*A for l in range(int(A/2)): i=l j=l for a in range(d): B[i][j]=data print("{0}:{1}:{2}".format(i,j,B[i][j]),end=" ")

[issue43157] Bug in methods of creating the 2d list

2021-02-07 Thread sandeep kumar
Change by sandeep kumar : -- title: Bug in methods of creating the list -> Bug in methods of creating the 2d list ___ Python tracker <https://bugs.python.org/issu

[issue43157] Bug in methods of creating the list

2021-02-07 Thread sandeep kumar
New submission from sandeep kumar : def generateMatrix(A): d=A-1 data=1 B=[[0]*A]*A for l in range(int(A/2)): i=l j=l for a in range(d): B[i][j]=data print("{0}:{1}:{2}".format(i,j,B[i][j]),end=" ")

[issue42836] docs: struct: clarify struct caching behaviour

2021-01-06 Thread Sandeep Subramanian
New submission from Sandeep Subramanian : As per docs in :https://docs.python.org/3.7/library/struct.html#struct.Struct > The compiled versions of the most recent format strings passed to Struct and > the module-level functions are cached, so programs that use only a few format >

[issue39928] Pysftp Issue File Upload is not working - put command

2020-03-10 Thread Sandeep
Sandeep added the comment: Eric how can I contact the python Mailing list -- status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue39928] Pysftp Issue File Upload is not working - put command

2020-03-10 Thread Sandeep
New submission from Sandeep : Hi We have requirement where we need to get file from client path and then upload the same to vendor directory path. I am not able to upload the file to vendor directory path , however when I tried to use the WINSCP it worked fine. So I thought of checking

[issue26789] Please do not log during shutdown

2020-01-31 Thread Sandeep
Sandeep added the comment: I did import aiohttp and called function sys.is_finalizing() just before logging.basicConfig but still the same error. Has logging.basicConfig worked in past ? If yes what additional package I need to add Thanks -- nosy: +Sandeep

[issue39513] NameError: name 'open' is not defined

2020-01-31 Thread Sandeep
New submission from Sandeep : Hi I wrote a python script which gets file from other server and it works fine till the time I don't introduces logging feature to it. Please advice how to fix below This is the code I am using for logging ' import logging logging.basicConfig(filename

[issue39513] NameError: name 'open' is not defined

2020-01-31 Thread Sandeep
Change by Sandeep : -- components: Library (Lib) nosy: Sandeep priority: normal severity: normal status: open title: NameError: name 'open' is not defined type: crash versions: Python 3.6 ___ Python tracker <https://bugs.python.org/issue39

[issue29141] error in 2to3

2017-01-03 Thread Sandeep Srinivasa
New submission from Sandeep Srinivasa: docs_uploaded_at = dict(filter(lambda (x,y):True if len(y) == 3 else False,docs_uploaded_at.iteritems())) produces docs_uploaded_at = dict([x_y for x_y in iter(docs_uploaded_at.items()) if True if len(x_y[1]) == 3 else False

[issue16136] Removal of VMS support

2014-06-17 Thread Sandeep Mathew
Sandeep Mathew added the comment: It does build with some tweaking here and there. But I ran into runtime issues. I am sorry, I cannot dedicate time on it further. IMHO anything built for VMS should use VMS specific API's in the way they are designed for stability and performance reasons, some

[issue16136] Removal of VMS support

2013-03-13 Thread Sandeep Mathew
Sandeep Mathew added the comment: Sorry for late response. I got delayed , I am working on it . Regards Sandeep Mathew 2013/3/9 Jesús Cea Avión rep...@bugs.python.org: Jesús Cea Avión added the comment: Ping... -- ___ Python tracker rep

[issue16136] Removal of VMS support

2012-11-06 Thread Sandeep Mathew
Sandeep Mathew added the comment: Hey, I was given access to HP's open source VMS cluster, Many thanks to HP. I should be able to continue python development for VMS. I shall ping you guys in case I get stuck. I should be good to go --Thomas

[issue16136] Removal of VMS support

2012-10-31 Thread Sandeep Mathew
Sandeep Mathew added the comment: I have asked HP for access to a VMS box so that I restart my work. I initially checked with the university to see if I can get hold of an Itanium box. @Trent : If you have HP - UX already running, you may make use of Hyper-V to get vms running without

[issue16136] Removal of VMS support

2012-10-22 Thread Sandeep Mathew
Sandeep Mathew added the comment: Hi , I love VMS very much, I could not concentrate actively on python because other work commitments ate up most of my time. I have left my job at HP and am now a PhD student and university of Nevada , Reno . Now that I do not have any professional commitments

[issue2724] Error in Python tutorial (http://docs.python.org/tut/node6.html)

2008-04-30 Thread Sandeep Sabnani
New submission from Sandeep Sabnani [EMAIL PROTECTED]: Section 4.4 on page http://docs.python.org/tut/node6.html has a for loop which uses the range function. However, the displayed output of that loop is not correct. I ran the same code and got the output as follows: 3 is a prime number 4 = 2

[issue2724] Error in Python tutorial (http://docs.python.org/tut/node6.html)

2008-04-30 Thread Sandeep Sabnani
Sandeep Sabnani [EMAIL PROTECTED] added the comment: Oh yes! Thanks for clearing my doubt and apologies for the silly error. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2724