Change by Sjoerd :
--
nosy: +samuelcolvin
___
Python tracker
<https://bugs.python.org/issue35837>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Sjoerd :
According to https://python.readthedocs.io/en/stable/whatsnew/3.5.html:
The SMTPServer class now advertises the 8BITMIME extension (RFC 6152) if
decode_data has been set True. If the client specifies BODY=8BITMIME on the
MAIL command, it is passed to
New submission from Sjoerd Job Postmus:
Currently Python2.7 calls `PyObject_IsSubclass` during exception handling. This
allows some virtual-base-class machinery to make Python believe a certain class
should match an exception while it in reality does not.
However, this does not necessarily
Sjoerd added the comment:
That happens when citing things from the top of my head... it is not liburl2
but urllib2 that I used, excuse me. (And urlopen instead of openurl...)
From
http://docs.python.org/2/library/urllib2.html
it seems to be a Standard Library module to me, am I mistaken? If
New submission from Sjoerd:
I'm sorry for providing very little information, but I don't have the system at
hand anymore. Therefore I will try to reproduce what I know, hoping that you
recognise the problem. If not, I will get back to the system and try to obtain
the necessary i
New submission from Sjoerd Langkemper:
In test_builtin.py, on the fourth in the test_any() function:
self.assertRaises(RuntimeError, all, TestFailingIter())
I think this should be:
self.assertRaises(RuntimeError, any, TestFailingIter())
--
components: Tests
messages: 181524
nosy
Sjoerd de Vries added the comment:
Hi Éric,
There you go, adapted from http://effbot.org/librarybook/py-compile.htm :
# File: py-compile-example-1.py
import py_compile
# explicitly compile this module
py_compile.compile("py-compile-example-1.py","py-compil
Sjoerd de Vries added the comment:
Good to hear that the patch is helpful.
Again, I am just trying to be a helpful user, making a (very very little)
contribution to make Python better. I am not a Python dev at all: Python is
already awesome enough for me, no desire to change it :-)
I just
Sjoerd de Vries added the comment:
Makes no sense to me: since I don't have the trunk version, I can only diff -c
against 3.2 release. Doing a diff against trunk is 1 sec of work for you.
But I am just being a helpful user; so if a diff is what you want, here it is.
No trouble for me,
Sjoerd de Vries added the comment:
The attached file just works.
You can diff with trunk, or wherever python devs store the latest version.
--
___
Python tracker
<http://bugs.python.org/issue12
New submission from Sjoerd de Vries :
When you specify cfile to be in the current directory, an error occurs (line
133).
I have fixed the file, see attached
--
components: Library (Lib)
files: py_compile.py
messages: 140940
nosy: sjdv1982
priority: normal
severity: normal
status: open
Sjoerd Mullender added the comment:
It was discussed on python-dev. It was suggested to submit a bug report on PEP
4. See http://mail.python.org/pipermail/python-dev/2010-February/097772.html.
--
___
Python tracker
<http://bugs.python.
New submission from Sjoerd Mullender :
When a module or feature is deprecated, all uses of the deprecated
module/feature should be removed from the non-deprecated part of the
distribution (and, I would argue, also from the other deprecated modules).
I think PEP 4 should say something to this
Sjoerd Mullender added the comment:
mhlib is not officially deprecated, if I may believe PEP 4.
Therefore I do not agree with the change that was made to this bug report.
As far as I am concerned, the bug remains that mhlib uses a deprecated module
Sjoerd Mullender added the comment:
What's difficult about just doing:
import mhlib
? That's all it takes to get the warning.
--
___
Python tracker
<http://bugs.python.
Sjoerd added the comment:
See http://bugs.python.org/issue1605192
--
___
Python tracker
<http://bugs.python.org/issue6426>
___
___
Python-bugs-list mailin
Sjoerd added the comment:
Thanks, I missed that. I only read the documentation for the methods.
--
___
Python tracker
<http://bugs.python.org/issue6425>
___
___
New submission from Sjoerd :
If you do not IMAP4.select(), you get the following error:
imaplib.error: command SEARCH illegal in state AUTH.
This does not inform the user that he has to do IMAP4.select(). Better
would be:
imaplib.error: command SEARCH illegal in state AUTH, allowed in state
New submission from Sjoerd :
The message_set parameter imaplib.IMAP4.fetch(message_set,
message_parts) is not a set or list, but a comma-separated string, it
seems. This could use some documentation.
--
assignee: georg.brandl
components: Documentation
messages: 90165
nosy: Sjoerder
Sjoerd Mullender added the comment:
I wrote the module 16 years ago, but haven't done anything with AIFF
files for probably at least 10, so I can't really comment on the merits
of the two solutions (delete _skiplist or add CHAN to _skiplist). I'm
fine with either.
However, the
Sjoerd Mullender <[EMAIL PROTECTED]> added the comment:
I'm sure you meant 2^32-2 ;-).
The "fix" to use long doesn't seem right to me either. unsigned int is
a better match with uid_t and gid_t.
___
Python tracker <[EMAIL PROTEC
New submission from Sjoerd Mullender <[EMAIL PROTECTED]>:
On Fedora 8 and 10 using Python 2.5.1 and 2.5.2 (64 bit):
$ grep nfsnobody /etc/passwd
nfsnobody:x:4294967294:4294967294:Anonymous NFS
User:/var/lib/nfs:/sbin/nologin
So the UID of nfsnobody is 4294967294 (-2 if viewed as signed
Sjoerd Mullender <[EMAIL PROTECTED]> added the comment:
Today the links to Microsoft documentation go to English language pages,
so that part of the bug report can be skipped.
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Sjoerd Mullender <[EMAIL PROTECTED]>:
There are several errors in the msilib documentation. I'm sure I
haven't found them all, but here are some:
- add_data is documented to have two arguments. In reality it has three.
- Execute on a View object is docum
24 matches
Mail list logo