Lino Mastrodomenico added the comment:
Friendly ping, there's still no documentation for this wonderful new module and
there's only one planned beta left for 3.7 before the release candidates.
Needless to say, https://www.python.org/dev/peps/pep-0557/ has lots of
information that
Lino Mastrodomenico added the comment:
FYI, the exact algorithm for determining the encoding of HTML documents is
http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#determining-the-character-encoding
There are lots of different algorithms documented all over the
Changes by Lino Mastrodomenico :
--
nosy: +mastrodomenico
___
Python tracker
<http://bugs.python.org/issue1712522>
___
___
Python-bugs-list mailing list
Unsub
Lino Mastrodomenico added the comment:
I think 0666 is correct because os.open() does a bitwise AND between this value
and the bitwise inversion of the umask, something like oct(0666 & ~umask).
Since the umask is usually 022 octal (18 decimal), the actual permission on
disk should be 064
New submission from Lino Mastrodomenico :
tarfile.open(filename, "w|") creates a tar file with execute permissions set,
if filename doesn't exist (i.e. it uses mode 0777 minus the umask). It should
instead use mode 0666 minus the umask, which is what happens when using mode
&qu
New submission from Lino Mastrodomenico :
The new function shutil.make_archive() supports bzip2 compression using "bztar"
as format parameter, but neither the documentation nor the docstring mention it
(all the other compression formats are correctly listed).
--
assignee: ge
Changes by Lino Mastrodomenico :
--
nosy: +mastrodomenico
___
Python tracker
<http://bugs.python.org/issue4733>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Lino Mastrodomenico :
--
nosy: +mastrodomenico
___
Python tracker
<http://bugs.python.org/issue1599329>
___
___
Python-bugs-list mailing list
Unsub
Changes by Lino Mastrodomenico :
--
nosy: +mastrodomenico
___
Python tracker
<http://bugs.python.org/issue1875>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Lino Mastrodomenico :
--
nosy: +l.mastrodomenico
___
Python tracker
<http://bugs.python.org/issue3297>
___
___
Python-bugs-list mailing list
Unsub
New submission from Lino Mastrodomenico <[EMAIL PROTECTED]>:
This should be easy: 2to3 must convert "import HTMLParser" to "import
html.parser".
--
components: 2to3 (2.x to 3.0 conversion tool)
messages: 77618
nosy: mastrodomenico
severity: normal
status: o
11 matches
Mail list logo