This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add stdout redirection tool to contextlib
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: Marc.Abramowitz, alex, barry, belopolsky, ezio.melotti, georg.brandl, ncoghlan, nikratio, pitrou, python-dev, rhettinger, vajrasky, vstinner
Priority: low Keywords:

Created on 2012-08-29 04:26 by rhettinger, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (36)
msg169335 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012-08-29 04:26
The technique of temporarily redirecting stdout could be encapsulated in a context manager.

print('This goes to stdout')
with RedirectStdout(sys.stderr):
     print('This goes to stderr')
     print('So does this')
print('This goes to stdout')

The print function already supports redirection but it much be done for every single call to print().  The context manager let's the redirection apply to a batch of statements.

The context manager is also useful with existing tools that don't currently provide output redirection hooks:

   from collections import namedtuple
   with open('model.py', 'w') as module:
       with RedirectStdout(module):
            namedtuple('Person', ['name', 'age', 'email'], verbose=True)


   import dis
   with open('disassembly.txt', 'w') as f:
       with RedirectStdout(f):
            dis.dis(myfunc)


A possible implementation is:

class RedirectStdout:
    ''' Create a context manager for redirecting sys.stdout
        to another file.
    '''
    def __init__(self, new_target):
        self.new_target = new_target

    def __enter__(self):
        self.old_target = sys.stdout
        sys.stdout = self.new_target
        return self

    def __exit__(self, exctype, excinst, exctb):
        sys.stdout = self.old_target
msg169336 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-08-29 04:45
We actually use a variant of this idea in the test suite (http://docs.python.org/dev/library/test#test.support.captured_stdout)

It would be pretty easy to combine the two concepts by defaulting the redirection to a new StringIO instance if no other destination is given:

print('This goes to stdout')
with redirect_stdout(sys.stderr):
     print('This goes to stderr')
     print('So does this')
print('This goes to stdout')
with redirect_stdout() as s:
     print('This goes to the io.StringIO instance "s"')
     print('So does this')
print('This goes to stdout')
msg169338 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2012-08-29 05:17
Sounds like a special case of a small part of mock. Not sure that this observation is significant though.
msg169339 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-08-29 05:22
Sure, but by targeting a specific use case you can make it really trivial to use.
msg169400 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-08-29 17:16
So Alex's point is valid: the examples in the unittest.mock.patch docs shows how to do this (http://docs.python.org/dev/py3k/library/unittest.mock.html#patch). So this could be simplified to:

def redirect_stdout(replacement=None):
  return unittest.mock.patch('sys.stdout', replacement if replacement is not None else io.StringIO())

Now that being said, this is extremely common, so Nick's point of just going ahead and providing the helper makes sense. But I wouldn't put it in contextlib but instead in unittest.mock since it is mocking out sys.stdout.
msg171327 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012-09-26 04:18
I like Nick's proposed variant and think it should go in contextlib, not the mocking library.  Redirection has a lot of use cases that has nothing to do with mocking-up test suites.  Contextlib is about general purpose context-managers that apply in many situations (the closing() context manager is a good example).
msg171329 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-09-26 06:19
I'd actually be inclined to make it the full trio: redirect_stdin, redirect_stdout, redirect_stderr.

Mostly because I don't see an especially compelling reason to privilege redirecting stdout over the other two standard streams, and the "pass in the stream name" approach is just ugly (e.g. we don't have "sys.stdstream['stdin']", we have sys.stdin).

There are plenty of command line apps that have both -i and -o options (to select input and output files), and "2>1" is a pretty common shell redirection.

Agreed that the general purpose nature of standard stream redirection makes it a good fit for contextlib, though.
msg184312 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2013-03-16 13:38
If such context manager is added, it should be documented that it does not work with subprocess or C functions writing directly into the file descriptor 1.

For such issues, I'm using dup2(). Example from my pysandbox project:

@contextlib.contextmanager
def capture_stdout():
    import sys
    import tempfile
    stdout_fd = sys.stdout.fileno()
    with tempfile.TemporaryFile(mode='w+b') as tmp:
        stdout_copy = os.dup(stdout_fd)
        try:
            sys.stdout.flush()
            os.dup2(tmp.fileno(), stdout_fd)
            yield tmp
        finally:
            sys.stdout.flush()
            os.dup2(stdout_copy, stdout_fd)
            os.close(stdout_copy)
msg193375 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-07-19 21:30
I don't think this has anything to do in contextlib (which isn't a library of context managers, but a library of tools to work with context managers), it probably belongs in the io module instead.
msg193392 - (view) Author: Marc Abramowitz (Marc.Abramowitz) * Date: 2013-07-20 01:45
As it happens, I wrote a similar context manager to Victor's recently for a setup.py because I wanted to suppress compiler errors that are output to the console by distutils.ccompiler.CCompiler.has_function. As Victor mentioned, for this to work with subprocesses, you need to go a little more low-level and mess around with file descriptors. Here's my function:

http://marc-abramowitz.com/archives/2013/07/19/python-context-manager-for-redirected-stdout-and-stderr/

(Maybe distutils.ccompiler.CCompiler.has_function should redirect its own output automatically, but that's another issue)

But then I got to thinking that it could be made a bit more powerful and the syntax could be a little nicer. So I have this code that I'm experimenting with:

https://gist.github.com/msabramo/6043474

But critiquing my own function, I wonder if it's trying to do too much in one function and it's using keyword arguments where it could be using the with statement better. So I might like Nick's API better.
msg193401 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-20 06:29
+1 for io as an intuitive home for a basic version that redirects the
current process output only (and is documented as doing so). While I
like the idea of offering a more sophisticated version that affects
subprocesses as well, I think that would be a very surprising thing to
do by default and should be a separate issue (perhaps proposing such
an addition to the subprocess module).
msg193459 - (view) Author: Marc Abramowitz (Marc.Abramowitz) * Date: 2013-07-21 17:17
I agree also that io is a good place for the basic version that doesn't do file descriptor stuff and maybe the fancy file descriptor stuff should be a separate issue and should go in subprocess.

To move this along and generate more discussion, I took code from Nick earlier in the thread and made a little patch and a test program and put it in a gist:

https://gist.github.com/msabramo/6049140

If folks like that, I can convert the test program into an automated test. 

What do you guys think?
msg193460 - (view) Author: Marc Abramowitz (Marc.Abramowitz) * Date: 2013-07-21 17:19
Oops, Nick => Brett.
msg193472 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-21 23:05
A good start, but:

1. io is too low level to depend on unittest (or even contextlib), as
anything it imports will be imported automatically at interpreter startup.
The context manager will need to be written out directly as a class with
the appropriate methods.

2. The name based API should accept the unqualified name and throw a value
error if an unexpected name is passed in.

3. The stdin replacement should have a separate optional keyword-only
"data" argument to request wrapping with StringIO, rather than duck typing
the replacement value.
msg193475 - (view) Author: Marc Abramowitz (Marc.Abramowitz) * Date: 2013-07-21 23:58
Thanks Nick! I'll work on applying your suggestions a little later. And I'll add a note about it not working with subprocesses because I realized that I forgot to do that. 

Regarding redirect_stdfile, which is presumably what you meant by "name-based API", I started out with unqualified names like 'stdout', etc. I went with the qualified name as an attempt at making it more general (i.e.: if folks perhaps wanted to use this for something other than sys files) - I don't know whether or not this is useful - I don't have a use case in mind (anyone else got one?) - so I don't know if qualified names brings anything useful or not but that was the thinking. Thoughts on this are welcome.
msg193476 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2013-07-22 00:12
I'm thinking that PrintRedirect is a better name because it coincides with the intent of the primary use case.  The more computer-sciency you make the name, the more it becomes opaque to everyday users.
msg193488 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-22 02:43
As Raymond noted, we should resist the temptation to generalise this too much - generalisation almost always comes at the cost of making any *specific* case harder (consider the difference between the complexity of the "support any URL scheme" model in urllib and urllib2 and the relatively API simplicity of the higher level HTTP/HTTPS focused requests module).

I'm wary of calling it "PrintRedirect" though, as I believe that's actively misleading: swapping sys.stdout for something else affects more than just the print builtin, and if a particular print call uses the "file" parameter, then the redirection of sys.stdout will have no effect.

"Redirection" in general is a bit of a misnomer for what the context manager is doing.

So, here's a concrete API suggestion and implementation:

    def replace_stdin(stream=None, *, data=None):
        if data is not None:
            if stream is not None:
                raise ValueError("Cannot specify both stream & data")
            stream = StringIO(data)
        return ReplaceStandardStream('stdin', stream)

    def replace_stdout(stream=None):
        return ReplaceStandardStream('stdout', stream)

    def replace_stderr(stream=None):
        return ReplaceStandardStream('stderr', stream)

    class ReplaceStandardStream:
        """Context manager to temporarily replace a standard stream

        On entry, replaces the specified sys module stream attribute
        ('stdin', 'stdout' or 'stderr') with the supplied IO stream
        object.

        On exit, restores the previous value of the sys module
        attribute.

        Note: as this context manager modifies sys module attributes
        directly, it is NOT thread-safe.
        """
        def __init__(self, attr, stream):
            if attr not in ('stdin', 'stdout', 'stderr'):
                raise ValueError("{.200!r} is not a standard stream name (expected one of: 'stdin', 'stdout', or 'stderr'".format(attr))
            self._attr_to_replace = attr
            self._old_stream = None
            if stream is None:
                self._replacement_stream = StringIO()
            else:
                self._replacement_stream = stream

        def __enter__(self):
            if self._old_stream is not None:
                raise RuntimeError("Cannot reenter {!r}".format(self))
            self._old_stream = getattr(sys, self._attr_to_replace)
            stream = self._replacement_stream
            setattr(sys, self._attr_to_replace, stream)
            return stream

        def __exit__(self):
            stream = self._old_stream
            if stream is None:
                raise RuntimeError("Never entered {!r}".format(self))
            self._old_stream = None
            setattr(sys, self._attr_to_replace, stream)

Cross linking from the print documentation to io.replace_stdout and from the input documentation to io.replace_stdin may also be a good idea.
msg193489 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-22 02:48
And reviewing my own draft - the convenience functions would need docstrings too, and the docstrings should mention that a new StringIO instance is created by default and that "as name" can be used to get access to that object.
msg193491 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2013-07-22 03:14
Nick, it seems to me that you're going way over-board with an otherwise simple idea.  I'm aiming for something that looks much like my original posting.  That has been tried out on my students with great success.
msg193492 - (view) Author: Marc Abramowitz (Marc.Abramowitz) * Date: 2013-07-22 03:30
I like Nick's version. I don't know if __exit__ really needs error checking, but I like the API. For me, it strikes a good balance between being intuitive and being general enough to do all the stuff I'd like to do. 

Should the docstrings mention that it only works within the process and doesn't affect subprocesses?

I also am having second thoughts about putting it in the io module. Now I'm thinking that sys makes more sense because that's where stdin, stdout, and stderr live.
msg193495 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-22 04:30
OK, Raymond and I had a chat on IRC about this, and I've come back around to the idea that the simple "contextlib.redirect_stdout" model as Raymond originally proposed is the way to go. There are a few pieces to that rationale:

1. Why in contextlib?

The io module isn't something people normally need to think about - we mostly hide it from them since they can just call the open builtin. Similarly, most new users don't need to touch the sys module - it's all hidden behind higher level abstractions (like input, print and argparse).

However, contextlib is something everyone will be exposed to, both to turn generators into context managers, but also for the utility context managers closing() and ignored().

It also comes down to trusting Raymond's opinion as an experienced Python teacher that contextlib is a more discoverable location than io for this particular piece of functionality.

2. Why only stdout? Why not stdin and stderr?

Raymond pointed out that the case for this kind of redirection helper is much weaker for stdin and stderr. Wanting to control where "print" and similar operations write to is quite common, but writing to stderr is often specifically about bypassing typical redirections and faking input through stdin is typically only done for testing purposes.

Adding stdlib APIs without compelling use cases isn't a good idea, even when they seem like an "obvious" generalisation.

In this case, outside the CPython test suite, I couldn't think of any situation where the limited versions of these helpers would have actually been useful to me, and in the test suite case, the typical answer would be "use a mock" (that just wasn't an option for CPython until recently when unittest.mock was added to the standard library).

Instead, I now think both of those cases would be better handled by the more sophisticated API discussed above that would deal with these things at the file descriptor level. So I suggest we split that API out as a new issue targetting the subprocess API.

3. Why not include automatic creation of StringIO objects?

Including such a default actually makes the API harder to document and explain. Composing a "you must supply a stream object" API with io.StringIO is easy to get local redirection is easy. If we support implicit creation, then we need to explain that it happens, and that the "as" clause can be used to retrieve the implicitly created object.

Raymond plans to work on a patch for this simple version of the API.
msg193498 - (view) Author: Nikolaus Rath (nikratio) * Date: 2013-07-22 05:07
I think stdout redirection is very useful, and I'm actually have a very similar context manager in my own code.

However, I'd like to raise the question if using a context manager for this purpose should really be "officially blessed" in this way.

To me, the with statement signals that effects are constrained to the managed block. But redirecting sys.stdout is a change with global scope - the redirection is not restricted to execution of the with block, it affects every other thread that's running at the same time. This effect is obvious if you wrote the redirection context manager yourself, but if you're using code from the standard library, this may be surprising.

I don't have a better proposal, but I just wanted to mention this...
msg193501 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-22 05:51
Yeah, the docs will need to note that it isn't thread safe. However, non thread-safe constructs are often still incredibly useful for scripting use cases.
msg193502 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2013-07-22 06:02
Can someone propose a patch instead of inline code?
msg193536 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-07-22 14:14
In general, I like where this is going.  I agree that a stdout redirector is
probably the most common case, and for that, it almost always (for me)
redirects to an open file.  The use case for stderr redirection is usually,
but not always, to redirect stderr to stdout, but I agree that that is much
more limited.  stdin redirection is much more rare, mostly a testing device,
and better done with mocking.

A suggestion about the name.  Thinking about how it will read in a
with-statement:

    with stdout_to(some_file):
        print('hello')

Since this is all about convenience, I'd mildly suggest an API similar to
built-in open().  I'd rather write this:

    with stdout_to('/tmp/debug.log', 'w', encoding='utf-8'):
        print('hello')

than this:

    with open('/tmp/debug.log', 'w', encoding='utf-8') as tmp_stdout:
        with stdout_to(tmp_stdout):
            print('hello')

stdout_to() could optionally take a single which would be an already open file
object.

Anyway, no doubt you'll paint this bikeshed your own particular color.  Mine
only cost $0.02.
msg193574 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-23 00:32
I'd prefer to keep the separate stream argument rather than duplicating the
signature of open. Separation of concerns and all that :)
msg193575 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2013-07-23 00:51
It would be nice if this context manager had an option to redirect the file descriptor 0 rather than just sys.stdout.  (For those familiar with py.test, I am asking for an equivalent of --capture=fd functionality.)

Unlike patching sys.stdout, which is within reach to most python users, redirecting fd 0 (and restoring it) is not a trivial task.
msg193576 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2013-07-23 00:53
In my post "fd 0" should have been "fd 1", of course.  (Proving that it is not trivial to get it right:-)
msg193578 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-23 03:02
Alexander, please read the earlier comments on the issue: we're deliberately *not* doing that. Such functionality is more advanced, and more appropriate for an API in the subprocess module. Anyone interested in exploring that option further should create a separate issue.

This API is about making a *particular* common use case genuinely trivial. Generalising it *isn't* desirable, as any such generalisations will be sufficiently complex that people are better off just rolling their own solution from first principles.
msg193583 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2013-07-23 04:24
Yes, I did miss Victor's dup2() comment.  (It looks like I did not subscribe to this issue from the start and missed early discussion - sorry.)

The simple feature is not very useful for me.  I have to deal with too many cases of misguided code like this:

def write_xyz(output=sys.stdout):
   ...

for which 

with RedirectStdout(...):
    write_xyz()

will not work.

I will create a separate issue once I have a concrete proposal, but with respect to this specific issue, I think it is better to provide a recipe in contextlib documentation for something like this: 

@contextlib.contextmanager
def redirect_stdout(stream):
    old_stdout = sys.stdout
    sys.stdout = stream
    yield
    sys.stdout = old_stdout

With the proposed RedirectStdout, I think many users will want some tweaks and will copy the "from scratch" implementation instead of discovering contextmanager.
msg193587 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-07-23 06:34
Can we go paint bikesheds somewhere else now, please? Raymond has persuaded me as contextlib maintainer that this small addition is worth making as a way of factoring out repeated calls to print with a file redirection in simple user scripts where thread safety isn't a concern.

I think more sophisticated tools are also potentially worthwhile, but *not here*.
msg193599 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-07-23 12:53
On Jul 23, 2013, at 04:24 AM, Alexander Belopolsky wrote:

>@contextlib.contextmanager
>def redirect_stdout(stream):
>    old_stdout = sys.stdout
>    sys.stdout = stream
>    yield
>    sys.stdout = old_stdout

Make that:

@contextlib.contextmanager
def redirect_stdout(stream):
    old_stdout = sys.stdout
    sys.stdout = stream
    try:
        yield
    finally:
        sys.stdout = old_stdout

and I'll be able to remove those 8 lines of code from all my other code bases
:)
msg199366 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-10 07:47
New changeset 63a1ee94b3ed by Raymond Hettinger in branch 'default':
Issue #15805: Add contextlib.redirect_stdout()
http://hg.python.org/cpython/rev/63a1ee94b3ed
msg199372 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-10-10 08:44
Nice.

My only complain is the dis.dis example. We don't have to use redirect_stdout context manager.

+        # How to capture disassembly to a string
+
+        import dis
+        import io
+
+        f = io.StringIO()
+        with redirect_stdout(f):
+            dis.dis('x**2 - y**2')
+        s = f.getvalue()


dis.dis supports file object natively. We can do this instead:
dis.dis('x**2 - y**2', file=f)
msg199435 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-10-11 01:40
I think this should also be added to the whatsnew.

Regarding the examples, isn't it easier to say that:
  with redirect_stdout(sys.stderr):
      print('error')
is equivalent to
  print('error', file=sys.stderr)
?

I think that in most of the cases users are redirecting something that is being print()ed, and this example gets the point across (even if the "file" arg can be used for this specific case, it is not always the case if print() is called by a function).  Capturing help() and especially did.dis() output don't seem to me realistic/intuitive use cases for redirect_stdout().
msg199598 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2013-10-12 16:48
Whatsnew: yes please.

As for your second point, I assume Raymond wanted to exemplify usage with an "unfortunate" API that prints to stderr with no option to change it.  It just turned out that dis() is not one of those APIs.

For purposes of print(), you're almost always better off using file=x on each print you do.
History
Date User Action Args
2022-04-11 14:57:35adminsetgithub: 60009
2013-10-12 16:48:47georg.brandlsetnosy: + georg.brandl
messages: + msg199598
2013-10-11 01:40:48ezio.melottisetmessages: + msg199435
stage: resolved
2013-10-10 08:44:00vajraskysetnosy: + vajrasky
messages: + msg199372
2013-10-10 07:47:39rhettingersetstatus: open -> closed
resolution: fixed
2013-10-10 07:47:05python-devsetnosy: + python-dev
messages: + msg199366
2013-07-23 12:53:35barrysetmessages: + msg193599
2013-07-23 06:34:37ncoghlansetmessages: + msg193587
2013-07-23 04:24:36belopolskysetmessages: + msg193583
2013-07-23 03:02:11ncoghlansetmessages: + msg193578
2013-07-23 00:53:02belopolskysetmessages: + msg193576
2013-07-23 00:51:17belopolskysetmessages: + msg193575
2013-07-23 00:32:42ncoghlansetmessages: + msg193574
2013-07-22 18:41:30brett.cannonsetnosy: - brett.cannon
2013-07-22 14:14:23barrysetmessages: + msg193536
2013-07-22 06:02:33vstinnersetmessages: + msg193502
2013-07-22 05:51:52ncoghlansetmessages: + msg193501
2013-07-22 05:07:01nikratiosetnosy: + nikratio
messages: + msg193498
2013-07-22 04:35:02ezio.melottisetnosy: + ezio.melotti
2013-07-22 04:30:21ncoghlansetmessages: + msg193495
2013-07-22 03:30:33Marc.Abramowitzsetmessages: + msg193492
2013-07-22 03:14:06rhettingersetmessages: + msg193491
2013-07-22 02:48:10ncoghlansetmessages: + msg193489
2013-07-22 02:43:59ncoghlansetmessages: + msg193488
2013-07-22 00:12:39rhettingersetmessages: + msg193476
2013-07-21 23:58:33Marc.Abramowitzsetmessages: + msg193475
2013-07-21 23:05:59ncoghlansetmessages: + msg193472
2013-07-21 17:19:06Marc.Abramowitzsetmessages: + msg193460
2013-07-21 17:17:31Marc.Abramowitzsetmessages: + msg193459
2013-07-20 06:29:20ncoghlansetmessages: + msg193401
2013-07-20 01:45:51Marc.Abramowitzsetmessages: + msg193392
2013-07-19 21:30:24pitrousetnosy: + pitrou
messages: + msg193375
2013-07-19 19:08:49Marc.Abramowitzsetnosy: + Marc.Abramowitz
2013-03-16 13:38:52vstinnersetnosy: + vstinner
messages: + msg184312
2013-03-16 04:23:02rhettingersetassignee: ncoghlan -> rhettinger
2013-03-16 00:44:58barrysetnosy: + barry
2012-09-26 06:19:18ncoghlansetmessages: + msg171329
2012-09-26 04:18:26rhettingersetmessages: + msg171327
2012-08-29 23:40:01belopolskysetnosy: + belopolsky
2012-08-29 17:16:39brett.cannonsetnosy: + brett.cannon
messages: + msg169400
2012-08-29 05:22:12ncoghlansetmessages: + msg169339
2012-08-29 05:17:41alexsetnosy: + alex
messages: + msg169338
2012-08-29 04:45:45ncoghlansetmessages: + msg169336
2012-08-29 04:27:10rhettingersetpriority: normal -> low
assignee: ncoghlan

nosy: + ncoghlan
2012-08-29 04:26:23rhettingercreate