Florian Apolloner added the comment:
Thank you for the kind words Michał. We (Django) are exactly in the position
that you describe. Our validation, at least for now has to stay strict, exactly
to prevent fallout further down the road (see
https://github.com/django/django/pull/14349
Changes by Florian Apolloner :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
versions: +Python 3.5
___
Python tracker
<http://bugs.python.org/issu
New submission from Florian Apolloner:
Compare those two URLs:
https://docs.python.org/3/whatsnew/
https://docs.python.org/3/
The first one shows version 3.4, whereas the later shows version 3.5.
--
messages: 250667
nosy: Florian.Apolloner
priority: normal
severity: normal
status: open
New submission from Florian Apolloner:
Unittest discovery does not seem to work if the tests package is a namespace
package. The attached file should have all details to reproduce, as soon as I
readd an __init__.py everything works fine.
Test was done using python3.4.2 and 3.4.3
Changes by Florian Apolloner :
--
nosy: +apollo13
___
Python tracker
<http://bugs.python.org/issue20138>
___
___
Python-bugs-list mailing list
Unsubscribe:
Florian Apolloner added the comment:
Yes, it works on python3.3 (from debian); I am parsing directly via
email.message_from_string:
Python 3.3.3 (default, Dec 8 2013, 14:51:59)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for mo
Changes by Florian Apolloner :
--
components: +email
nosy: +barry, r.david.murray
versions: +Python 3.4
___
Python tracker
<http://bugs.python.org/issue20
New submission from Florian Apolloner:
Given this email:
---
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Subject: =?utf-8?q?Ch=C3=A8re_maman?=
From: f...@example.com
To: t...@example.com
Date: Sat, 28 Dec 2013 13:08:07 -
Florian Apolloner added the comment:
Using BytesGenerator I get:
>>> fp = BytesIO()
>>> g = BytesGenerator(fp)
>>> msg = MIMENonMultipart('text', 'plain')
>>> msg.set_payload('А Б В Г Д Е Ж Ѕ З И І К Л М Н О П.', cs)
>>&
Florian Apolloner added the comment:
Am I not explicitelly disabling base64 by setting body_encoding to None?
--
___
Python tracker
<http://bugs.python.org/issue19
New submission from Florian Apolloner:
Take the following example:
>>> from email.mime.nonmultipart import *
>>> from email.charset import *
>>> msg = MIMENonMultipart('text', 'plain')
>>> cs = Charset('utf-8')
>>> cs.
New submission from Florian Apolloner :
If I use the server code in the attachment I get this error in unwrap:
Traceback (most recent call last):
File "server.py", line 23, in
deal_with_client(connstream)
File "server.py", line 13, in deal_with_client
s = connst
12 matches
Mail list logo