Philip Lee added the comment:
and I got ZipImportError: bad local file header
--
___
Python tracker
<https://bugs.python.org/issue19081>
___
___
Python-bug
Philip Lee added the comment:
The issue still remains in Python 3.8.
--
nosy: +iMath
versions: +Python 3.8 -Python 2.7, Python 3.4, Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue19
Philip Lee added the comment:
To reproduce the reported issue, one could also test with ffmpeg.exe
--
___
Python tracker
<https://bugs.python.org/issue30
Philip Lee added the comment:
What about my last suggestion :
it would be better to move "Dictionaries preserve insertion order" part at the
end of the doc of https://docs.python.org/3/library/stdtypes.html#dict up below
the doc for
class dict(**kwarg)
class dict(mapping, **kwarg)
New submission from Philip Lee:
First, It is nearly useless for the command prompt to pop up during the
running time of subprocess.Popen with shell=False.
Second, the popping up command prompt would interrupt users and do bad to user
experience of GUI applications.
Third, I found QProcess
New submission from Philip Lee:
The doc here
https://docs.python.org/3/library/subprocess.html#subprocess.Popen
says :
"If shell is True, it is recommended to pass args as a string rather than as a
sequence."
but without explain why ? Please add the explanation !
whil
New submission from Philip Lee:
There example code here becomes invalid
https://docs.python.org/3/faq/programming.html#why-do-lambdas-defined-in-a-loop-with-different-values-all-return-the-same-result
>>> squares = []
>>> for x in range(5):
squares.a
Philip Lee added the comment:
I think so, the current behavior is misleading
在2016年12月27 00时08分, "R. David Murray"写道:
R. David Murray added the comment:
If it is truncated, should it end with '...' or [...]?
--
nosy: +r.david.murray
__
Philip Lee added the comment:
I use the following django view function also produce the same exception
def sendFiles(request):
fileName = request.GET['fileName']
pathToFile = os.path.join(filesDir, fileName)
response = FileResponse(open(pathToFile, 'rb'))
New submission from Philip Lee:
when using open(filename, 'w') on Windows , File names are not allowed to
contain any characters in \/:*?"<>| , however open(filename, 'w') doesn't
throw any exceptions when the file name contains these characters .
I thi
10 matches
Mail list logo