On Sun, Jan 03, 2016 at 04:31:55AM -0500, Random832 wrote:
> But there is no command to create a "pull request", nowhere for such
> a thing to exist in the repository, etc.
There is this [1].
> Also if someone puts through a github pull request and then their
> patch is accepted, my understanding
On Sat, Jan 11, 2014 at 08:00:05PM -0800, CraftyTech wrote:
> I'm finding it hard to use unittest in a for loop. Perhaps something like:
>
> for val in range(25):
> self.assertEqual(val,5,"not equal)
>
> The loop will break after the first failure. Anyone have a good
> approach for this? ple
On Sun, Jul 28, 2013 at 04:41:27PM -0700, ru...@yahoo.com wrote:
> How, using Python-3.3's email module, do I "flatten" (I think
> that's the right term) a Message object to get utf-8 encoded
> body with the headers:
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
> wh
On Sun, Jun 16, 2013 at 12:51:04AM +, Steven D'Aprano wrote:
> On Sun, 16 Jun 2013 09:09:37 +1000, Chris Angelico wrote:
> > Mailman is the software that runs python-list@python.org, so this
> > *is* applicable to everyone who reads the mailing list (including
> > myself). The fact that there'
On Sat, Jun 15, 2013 at 01:07:29PM -0400, D'Arcy J.M. Cain wrote:
> On Sat, 15 Jun 2013 18:41:41 +0200 Chris “Kwpolska” Warrick wrote:
> > On Sat, Jun 15, 2013 at 5:40 PM, Steven D'Aprano wrote:
> > > In the name of all that's good and decent in the world, why on earth
> > > would you do that when
Hello list!
I'm trying to figure out how to flatten a MIMEText message to bytes
using an 8bit Content-Transfer-Encoding in Python 3.3. Here's what
I've tried so far:
# -*- encoding: utf-8 -*-
import email.encoders
from email.charset import Charset
from email.generator import BytesGenerat