[issue35837] smtpd PureProxy breaks on mail_options keyword argument

2019-01-27 Thread Sjoerd
Change by Sjoerd : -- nosy: +samuelcolvin ___ Python tracker <https://bugs.python.org/issue35837> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35837] smtpd PureProxy breaks on mail_options keyword argument

2019-01-27 Thread Sjoerd
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

[issue25537] Call `isinstance` instead of `issubclass` during exception handling

2015-11-02 Thread Sjoerd Job Postmus
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

[issue19012] liburl2: bad proxy configuration throws getaddrinfo error

2013-09-17 Thread Sjoerd
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

[issue19012] liburl2: bad proxy configuration throws getaddrinfo error

2013-09-13 Thread Sjoerd
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 information

[issue17142] test_any calls all() instead of any()

2013-02-06 Thread Sjoerd Langkemper
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

[issue12618] py_compile cannot create files in current directory

2011-10-24 Thread Sjoerd de Vries
Sjoerd de Vries sjdv1...@gmail.com 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-compile

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Sjoerd de Vries
New submission from Sjoerd de Vries sjdv1...@gmail.com: 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

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Sjoerd de Vries
Sjoerd de Vries sjdv1...@gmail.com added the comment: The attached file just works. You can diff with trunk, or wherever python devs store the latest version. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12618

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Sjoerd de Vries
Sjoerd de Vries sjdv1...@gmail.com 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

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Sjoerd de Vries
Sjoerd de Vries sjdv1...@gmail.com 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

[issue7966] mhlib does not emit deprecation warning

2010-03-08 Thread Sjoerd Mullender
Sjoerd Mullender sjo...@acm.org 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

[issue8090] PEP 4 should say something about the standard library

2010-03-08 Thread Sjoerd Mullender
New submission from Sjoerd Mullender sjo...@acm.org: 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

[issue8090] PEP 4 should say something about the standard library

2010-03-08 Thread Sjoerd Mullender
Sjoerd Mullender sjo...@acm.org 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 rep

[issue7966] mhlib uses deprecated module

2010-02-19 Thread Sjoerd Mullender
Sjoerd Mullender sjo...@acm.org added the comment: What's difficult about just doing: import mhlib ? That's all it takes to get the warning. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7966

Re: removing a post

2009-09-27 Thread Sjoerd Mullender
We are your photos. Share us now with Windows Live Photos. http://go.microsoft.com/?linkid=9666045 -- Sjoerd Mullender -- http://mail.python.org/mailman/listinfo/python-list

Re: zip codes

2009-08-17 Thread Sjoerd Mullender
to uniquely identify an address. I.e. you don't need the street name. E.g., my work address has ZIP code 1098 XG and house number 123, so together they indicate that I work at Science Park 123, Amsterdam. In other words, a simple city - ZIP mapping is not sufficient. -- Sjoerd Mullender

[issue6425] imaplib.IMAP4.fetch() is missing documentation for message_set parameter

2009-07-08 Thread Sjoerd
Sjoerd sjoerd-pyt...@linuxonly.nl added the comment: Thanks, I missed that. I only read the documentation for the methods. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6425

[issue6426] imaplib.IMAP4 command illegal in this state is unhelpful error message

2009-07-08 Thread Sjoerd
Sjoerd sjoerd-pyt...@linuxonly.nl added the comment: See http://bugs.python.org/issue1605192 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6426

[issue6425] imaplib.IMAP4.fetch() is missing documentation for message_set parameter

2009-07-06 Thread Sjoerd
New submission from Sjoerd sjoerd-pyt...@linuxonly.nl: 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

[issue6426] imaplib.IMAP4 command illegal in this state is unhelpful error message

2009-07-06 Thread Sjoerd
New submission from Sjoerd sjoerd-pyt...@linuxonly.nl: 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

Re: regex question on .findall and \b

2009-07-02 Thread Sjoerd Mullender
'\b\d+\b','this is test a3 attempt 79') ['79'] The \b is a backspace, by using raw strings you get an actual backslash and b. -- Sjoerd Mullender -- http://mail.python.org/mailman/listinfo/python-list

[issue2245] aifc cannot handle unrecognised chunk type CHAN

2009-03-24 Thread Sjoerd Mullender
Sjoerd Mullender sjo...@acm.org 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

[issue4591] uid/gid problem in os.chown

2008-12-09 Thread Sjoerd Mullender
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 PROTECTED] http://bugs.python.org

[issue4591] uid/gid problem in os.chown

2008-12-08 Thread Sjoerd Mullender
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 32-bit

Re: Gateway to python-list is generating bounce messages.

2008-09-11 Thread Sjoerd Mullender
. It is not the gateway's fault that there are systems that don't follow the standards. -- Sjoerd Mullender, python-list administrator -- http://mail.python.org/mailman/listinfo/python-list

[issue3216] errors in msilib documentation

2008-06-30 Thread Sjoerd Mullender
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.python.org/issue3216

[issue3216] errors in msilib documentation

2008-06-27 Thread Sjoerd Mullender
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 documented to have

Re: Is massive spam coming from me on python lists?

2008-04-21 Thread Sjoerd Mullender
. -- Sjoerd Mullender -- http://mail.python.org/mailman/listinfo/python-list

Re: Is massive spam coming from me on python lists?

2008-04-21 Thread Sjoerd Mullender
Torsten Bronger wrote: Hallöchen! Sjoerd Mullender writes: On 2008-04-21 08:01, Brian Vanderburg II wrote: I've recently gotten more than too many spam messages and all say Sender: [EMAIL PROTECTED] [...] That is just mailman (the mailing list software) keeping track of things

Re: Rounding a number to nearest even

2008-04-15 Thread Sjoerd Mullender
. -- Sjoerd Mullender signature.asc Description: OpenPGP digital signature -- http://mail.python.org/mailman/listinfo/python-list

mod_python and pysvn

2007-09-11 Thread Sjoerd
/repository' does anyone know how I can fix this? thanks in advance! Sjoerd -- http://mail.python.org/mailman/listinfo/python-list

Re: mod_python and pysvn

2007-09-11 Thread Sjoerd
On Sep 11, 7:41 pm, Bjoern Schliessmann usenet- [EMAIL PROTECTED] wrote: Tim Golden wrote: Sjoerd wrote: ClientError: Unable to open an ra_local session to URL Unable to open repository 'file:///P:/tools/builds/repository' does anyone know how I can fix this? Usually means

MySQLdb ImportError

2007-08-31 Thread Sjoerd
code 193 This is on a AMD64 bit machine, when I import it on a 32 bit machine it works fine. Is there anyway to fix this? Is there a build for AMD64 bit machines or is there simply no way that I can get MySQLdb working on it? Thanks in advance, Sjoerd -- http://mail.python.org/mailman/listinfo

Spyder 0.7.2

2007-08-16 Thread Sjoerd de Vries
(). Spyder can deal with complex data models, but also with a variety of 3D objects and with media files. It comes with several tutorials and an expanding library of classes and converters. It has been interfaced to the 3D modelling program Blender. Spyder is licensed as freeware. Sjoerd

Stop a thread on deletion

2007-08-08 Thread Sjoerd Op 't Land
gc.get_referrers(self), but it seems to need some parsing. I'm not sure how to implement that and I'm not sure whether it will work always or not. Thanks in advance for any suggestion, Sjoerd Op 't Land -- http://mail.python.org/mailman/listinfo/python-list

Re: Stop a thread on deletion

2007-08-08 Thread Sjoerd Op 't Land
Dear Cris, Thanks a lot. This works! (What you didn't know, there was already such a 'proxy' object in the design, so it isn't the hack it looks ;).) Thanks again, Sjoerd Op 't Land Chris Mellon schreef: On 8/8/07, Sjoerd Op 't Land [EMAIL PROTECTED] wrote: Hello all, I'm using threading

test, please ignore

2006-09-20 Thread Sjoerd Mullender
This is a test message from your mailing list administrator. Please ignore. -- Sjoerd Mullender -- http://mail.python.org/mailman/listinfo/python-list