[issue46680] file calls itself

2022-02-08 Thread renzo
New submission from renzo : good morning I created a file called prova.py inside I put 3 lines import test a = 2 print (a) d questions why does a file have to call itself .. is it intended? how come it prints the value of a twice and does not enter the loop? -- components: Build

Re: Setting the encoding in pysqlite2

2005-08-25 Thread Renzo
]]) An example: cur.execute( insert into tab( field1, field2) values (?,?) , (myvar1.encode('utf8'),\ myvar2.encode('utf8'))) Bye, Renzo -- http://mail.python.org/mailman/listinfo/python-list

zipfile library - problem..

2005-08-11 Thread Renzo
of a single file 4 GB total size of archive 256 TB maximum path/filename length64 KB Have you any idea? Oh, the O.S. is WinXP Pro Thank you!. Renzo -- http://mail.python.org/mailman/listinfo/python-list

Re: zipfile library - problem..

2005-08-11 Thread Renzo
Renzo ha scritto: cut all I've seen that the error is a known bug: zipfile still has 2GB boundary bug http://mail.python.org/pipermail/python-dev/2005-April/052887.html so I've used the module TarFile instead ZipFile, and now the script works perfectly. Thanks to Deelan and Manlio Perillo