[issue33208] Lib2to3 grammar.txt error

2018-04-04 Thread Lukasz
Lukasz <lswierzews...@gmail.com> added the comment: In fact I dont know what should I do. Can I install any module via pip to solve this problem ? On android version of python I dont have access to directory like: Lib/lib2to3/pgen2/dri

[issue33208] Lib2to3 grammar.txt error

2018-04-04 Thread Lukasz
Lukasz <lswierzews...@gmail.com> added the comment: I think this is the same problem but I want to use the script from the phone (mobile version of python) so I do not know how to solve it. -- ___ Python tracker <rep...@bugs.python.or

[issue24960] Can't use lib2to3 with embeddable zip file.

2018-04-03 Thread Lukasz
Lukasz <lswierzews...@gmail.com> added the comment: I have simmilar problem but im using python 2.7 on android. So I think I cant use this solution My problem: https://bugs.python.org/issue33208 -- nosy: +Lukasz00500 ___ Python tracke

[issue33208] Lib2to3 grammar.txt error

2018-04-02 Thread Lukasz
Change by Lukasz <lswierzews...@gmail.com>: -- components: +IO type: -> crash versions: +Python 2.7 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33208] Lib2to3 grammar.txt error

2018-04-02 Thread Lukasz
New submission from Lukasz <lswierzews...@gmail.com>: Hello I have problem with script Im am totaly beginner in python I'm using Qpython ( python 2.7 on android) So this is my error: /data/user/0/org.qpython.qpy/files/bin/qpython-android5.sh "/storage/emulated/0/qpython/scri

[issue16318] FTP_TLS in ftplib not supporting prot_p storlines in FTP7.5

2015-01-30 Thread Lukasz Szybalski
Lukasz Szybalski added the comment: Hello, We are having issues usign ftplib for implicit TLS over port 990 I'm referencing a solution that states For the implicit FTP TLS/SSL(defualt port 990), our client program must build a TLS/SSL connection right after the socket is created

[issue19630] marshal.dump cannot write to temporary file

2013-11-17 Thread Lukasz Mielicki
New submission from Lukasz Mielicki: marshal.dump yields error when temporary file is given as a second argument. import tempfile import marshal tmpfile = tempfile.TemporaryFile(mode='w+b') # TypeError: marshal.dump() 2nd arg must be file marshal.dump({}, tmpfile) -- components

[issue19630] marshal.dump cannot write to temporary file

2013-11-17 Thread Lukasz Mielicki
Lukasz Mielicki added the comment: I'm seeing this on Windows with Python 2.7.6 (amd64). I can write to the same file with other methods. On 17 November 2013 18:36, Gregory Salvan rep...@bugs.python.org wrote: Gregory Salvan added the comment: I can't reproduce this issue (on linux

[issue19630] marshal.dump cannot write to temporary file

2013-11-17 Thread Lukasz Mielicki
Lukasz Mielicki added the comment: Thank you for detailed explanation. Too bad tempfile is inherently non-portable, but I'm fine with marshal.dumps as a w/a in this case. I marshal to a temporary file to serialize input for Perforce command line client which is capable of accepting marshaled

[issue1466065] base64 module ignores non-alphabet characters

2012-11-26 Thread Lukasz Taczuk
Lukasz Taczuk added the comment: Could someone update the docs for python 2.7.3? This ticket is marked as closed and b64decode still silently ignores non base64 chars, but the documentation (for 2.7.3) still states that while calling b64decode A TypeError is raised

[issue2054] add ftp-tls support to ftplib - RFC 4217

2008-07-11 Thread Lukasz Szybalski
Lukasz Szybalski [EMAIL PROTECTED] added the comment: Is the ftp-tls able to use certificate to connect to ftps server? I currently need to connect to state's ftps server which requires certificate to be present when authenticating. Is that option available? What is the current status