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: Move test/support.py into a test.support subpackage
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ncoghlan Nosy List: chris.jerdonek, eric.araujo, ezio.melotti, flox, italip, loewis, mjdorma, ncoghlan, pitrou, python-dev, r.david.murray, shihai1991, sptonkin
Priority: normal Keywords: easy, patch

Created on 2012-07-30 01:37 by chris.jerdonek, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
move_test_support.patch italip, 2013-07-08 03:37 moves test.test_support to the test.support
Pull Requests
URL Status Linked Edit
PR 20824 shihai1991, 2020-06-15 13:05
Messages (40)
msg166848 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-07-30 01:37
This issue is to move test/support.py into a test.support subpackage as discussed in issue 15403.

This can be done post-release.
msg166849 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-07-30 01:40
If people are okay with populating test/support/__init__.py with code (at least initially), the first patch could be to move support.py into test/support/__init__.py.  One nice thing about this approach is that the calling code won't need to change. 

The second patch could be to move test/script_helper.py into the package.
msg166852 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-07-30 02:12
I'd prefer to keep test.support as a single module, rather than converting it to a package.
Most of the time I open up test.support when I'm trying to find some function, so having more files will only make this more complicated.
msg166854 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-07-30 02:44
Note that I don't think test.support itself should be broken up - I don't see any good reason to split the current grab bag of functionality out into submodules, so you'd just have support/__init__.py open instead.

This is really about giving us a better way to organise the *other* helper modules like script_helper and make them easier to find.
msg166858 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-07-30 06:55
-1. test.support is not at all too large for a single module; there is no point in refactoring it.

Without a specific patch to review which proposes some specific change, I'm rejecting this change request.
msg166864 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-07-30 08:04
Martin, this change has been specifically requested by me to better organise all the support code that ISN'T in test.support.

That file is already huge, and I'm not going to make it even bigger with all the test infrastructure needed for generating packaging heirarchies and zip files and invoking Python subprocesses in various ways.

However, that support code *does* need to be made more discoverable (so we stop reinventing these wheels badly).

A package with the current support.py as its __init__.py is the obvious solution.
msg166871 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-07-30 10:03
So who is going to provide a patch for it, and when?

I don't think the tracker is the right place to keep list of things that someone wants to do some day. There isn't an issue "Python should have a JIT", either. Tracker issues should be actionable at the time the issue is submitted, unless there is a clear criterion on which to defer the issue.

If the objective is to just put the module into an __init__.py, it takes just a few minutes, no?
msg166872 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-07-30 10:25
As noted in the original post, this is a change which will be made once the 3.3 release is out the door. It's origin lies in the fact that one of the new pkgutil tests currently lives in test_runpy because test_runpy has much better infrastructure for that kind of thing.

While figuring out where to put some shared infrastructure for the runpy, pkgutil, import and importlib tests, I came to the conclusion that having support.py, script_helper.py and whatever we decide to call the new module all living in the main test directory makes the support modules unnecessarily hard to find, and merging them all into a single massive support.py module doesn't make sense either.

Chris has been working on the patches. We were going to try to get this refactoring done before the release, but enough other things have ended up coming up that Antoine and I decided it was better to wait.
msg166873 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-07-30 10:29
I've just gone through and made sure all the related issues are correctly assigned to me.
msg173721 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-24 23:22
Tonight I was looking for assert_python_failure() in test.support, and it took me a while to figure out it was in script_helper.py instead.

As suggested in msg166778 by Antoine, I would rather pick option 1 and merge everything in test.support, rather than further scattering these functions among different files.
msg173722 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-10-24 23:32
test.support will become a package in 3.3 and trunk after the final 3.2
release goes out.

Excessively large source files are a sign of bad software design.
msg173723 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-24 23:40
> Excessively large source files are a sign of bad software design.

Are there actual reasons that support this claim?
msg173727 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-10-25 00:26
Umm, WTF? You're really asking me to justify the basic software
engineering principle that modularity is good, and wanting to dump
everything in one file is one of the classic signs that your
architectural design is non-existent and you have completely failed to
adequately decompose your problem into smaller ones? Here it's even
worse, because we *have* already done that decomposition, and people
are proposing that we *abandon it*.

The classic work on the physical design of software is probably Large
Scale C++ Software Design from Lakos, and even though much of that is
C++ specific (and the technical specifics are now rather dated even in
that space), the general principles of understanding your physical
dependencies and allowing suitable levels of granularity in your
dependency hierarchy holds regardless of your development language.

Small is beautiful (but not too small, that way lies madness).
msg173732 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-10-25 06:15
> test.support will become a package in 3.3 and trunk after the final 3.2
> release goes out.
> 
> Excessively large source files are a sign of bad software design.

Do you weigh in the python-dev discussion about splitting
unicodeobject.c?
msg173733 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-10-25 06:17
s/Do you weigh in/Do you want to weigh in/, sorry.
msg173734 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-10-25 06:22
>> Excessively large source files are a sign of bad software design.
>
> Do you [want to] weigh in the python-dev discussion about splitting
> unicodeobject.c?

Nick did weigh in starting here:

http://mail.python.org/pipermail/python-dev/2012-October/122391.html
msg173736 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-10-25 06:26
Ah, ok. Perhaps I should read python-dev before talking about it!
msg173737 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-10-25 06:27
I already did, that thread 'tis a large part of why I'm somewhat irritable in relation to this topic today. "Huge source files are inherently bad because they provide no hint as to the modular breakdown and encourage excessive coupling between subcomponents" is just such a basic assumption of physical software design that I'm completely dumbfounded that people are questioning it.

If the objections were "I think this particular proposed breakdown is bad", it would be one thing, but most of them aren't, they're "I don't think it should be broken up at all for stupidly trivial reasons that have nothing to do with anything".
msg173757 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-25 13:46
> Umm, WTF? You're really asking me to justify the basic software
> engineering principle that modularity is good, 

I'm aware of the principle -- what I'm asking is what practical advantages this will bring (practicality beats purity).

> and wanting to dump everything in one file is one of the classic signs
> that your architectural design is non-existent and you have completely
> failed to adequately decompose your problem into smaller ones?

As I see it, test.support is a module containing miscellaneous helper functions to be used in the tests.  Therefore, if I'm looking for an helper function (like assert_python*()), I could just open the file and find it there.
This is especially true for *generic* helper functions, like assert_python* (not widely used, see #9517) and temp_dir (duplicated in support.py, see #15376).  Both these issues were probably caused by the fact that people didn't know about script_helper.py and ended up implementing their own versions of the functions either in the test files or in support.py.
Something similar happened with requires_zlib (and possibly a few others) too -- it was defined in several test modules before being moved to support.py.

Having several modules doesn't solve the problem of discoverability -- it actually make it worse by adding another level of indirection (find what files do you have and which one is the right one -> find what you are looking for in the right file).  I often look at the code from hg.python.org, and ctrl+f there clearly covers only one file.  Similarly inspecting/grepping a single file is easier than doing it for multiple files, especially if you don't know what the other files are.

If people are not trying to find a specific function, but rather want an overview of the helper test functions, we could (and should) document them like we did with Doc/library/test.rst and have sections there.  For example if I `ls` Lib/test/support/ and see a script_helper.py file, I could hardly guess that it contains functions to run python in a subprocress.  This could be easily explained in the doc.

That said, I should mention that 1) I'm not sure how many other helper modules there are around, how big they are, and how well things are already divided; 2) I don't know the structure that you want to use for the package.  If you are just grouping the existing helper modules in a package and if the namespace is kept flat (so that we don't end up with test.support.whatever.TESTFN), then I agree that it's an improvement.  If you are planning to further split support.py, then I'm -1.

> "Huge source files are inherently bad because they
> provide no hint as to the modular breakdown

I can't think off the top of my head of a sensible breakdown for support.py.  I can see that the assert/kill/spawn/python functions are all related, but the current module division seems to me quite arbitrary.  Why import(_fresh)_module and related functions are not on their own module even if they have more code than all the assert/kill/spawn_python functions?  Should all the skip/require decorators in support.py get their own module?  What about the context manages like run_with_locale, temp_dir, temp_umask, EnvironmentVarGuard, etc.?  Why script_helper contains helper functions to run python in a subprocess and also helper functions for scripts?

> If the objections were "I think this particular proposed 
> breakdown is bad"

If you suggest a breakdown I can provide better objections, however I think it's already broken down enough (and maybe even too much).

> I already did, that thread 'tis a large part of why 
> I'm somewhat irritable in relation to this topic today.

Same here, just in the opposite directions ;)


P.S. incidentally the other day someone asked me where unittest.main was defined because he couldn't find it using "Find in files".  We tried looking in __main__.py and __init__.py for "def main" and it wasn't there, but we noticed a "from .main import TestProgram, main".  So we looked in main.py for a "def main" and still couldn't find it, so we looked for just "main".  Eventually we found a "main = TestProgram" at the very bottom of main.py.
msg173762 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-10-25 14:50
Since "basic software engineering principles" have been invoked, I'd like to point out that many of the standard motivations to modularization don't apply in this case. So it is fair to ask what *specific* benefits such a restructuring may have. Such a description is necessary in advance in order to determine whether a specific restructuring actually achieves the stated objectives.

In the Wikipedia article on "Modular programming", the main advantage (as in "top-down  design") is that you can decompose a yet-to-be-built system upfront, and split the work into several teams, which then can develop the system independently, and only need to integrate at the end. This is less relevant as the system in question is already built.

Another motivation given in Wikipedia is reuse in different systems. There isn't really any reuse planned for the code in question, but perhaps reuse in other Python implementations would make a point. If that is the motivation, the split should be to separate CPython support code from other support code.

The wikipedia article also claims that the code is easier to debug, update, and modify. Easier modification may come from the notion of abstract interfaces: the module implementation can be changed without affecting module use (if the interfaces are unchanged. For this case, the code is already at a module boundary (of the support module); I fail to see why further modularization would improve anything.

Easier debugging may come from less code being involved in a certain code path. Mere refactoring cannot improve that. You have to rewrite the functions, but that would be possible even without splitting the module.
msg173790 - (view) Author: Chris Jerdonek (chris.jerdonek) * (Python committer) Date: 2012-10-25 18:44
> If you are planning to further split support.py, then I'm -1.

Ezio, this issue is not to split up support.py.  Nick already responded to you to this effect in the fourth comment above.  Also, in the second comment to this issue, I said that this issue was to move support.py as is into support/__init__.py, and then to move script_helper.py as is into the package.

> Having several modules doesn't solve the problem of discoverability

We already have more than one module.  This issue helps discoverability by grouping them in one place so people know what support modules there are.  In other words, this issue addresses the following problem you mentioned:

"Both these issues were probably caused by the fact that people didn't know about script_helper.py and ended up implementing their own versions of the functions either in the test files or in support.py.  Something similar happened with requires_zlib (and possibly a few others)..."

> So it is fair to ask what *specific* benefits such a restructuring may have.

Martin, see the paragraph above.  In addition, this change makes it easier to search whatever support modules we have.  It also provides a place to put new support modules to avoid further exacerbating the discoverability problem stated above.
msg173791 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-25 18:52
> Ezio, this issue is not to split up support.py.  Nick already responded
> to you to this effect in the fourth comment above.

Indeed, I should have re-read the messages more carefully.

> Also, in the second comment to this issue, I said that this issue was
> to move support.py as is into support/__init__.py, and then to move
> script_helper.py as is into the package.
>
> We already have more than one module. 

Are there other modules except these two?  Because if the package will only group these two, I think it's better/easier to merge script_helper.py in support.py.

As I said in the previous message I don't see why the spawn/kill/assert_python functions should be in a separate file and the import_fresh_module ones shouldn't.  Even if having these two files in the same package will make discoverability easier it still seems an arbitrary division.
msg173792 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-10-25 18:59
Every sizeable (and some not-so-sizeable) Python projects I've worked on have one or more 'utils' modules that collect stuff that doesn't logically fit elsewhere.  That's what test.support is for the test infrastructure.

I agree that we should not talk in generalities.  As Martin has indicated, appeal to authority in the form of "basic software engineering principles" is not enough by itself.  We should look at specific proposals and decide based on specific arguments whether they will improve matters.  And yes, their status as good engineering principles is meaningful, but only if the reasons for those specific principles actually apply in the specific case.

Certainly making the functions in script_helpers more discoverable is a laudable goal.

As an aside: I've worked on a project that is well modularized if you judge by the number and size of the source files (if you ignore a few single-class files created by former java programmers)...but it didn't follow any of the logical reasons Martin quoted for modularization: finding things in the source base was a pain, and different responsibility groups were responsible for files spread across the source tree and wound up stepping on each other's toes, and debugging was not aided by the source structure because while the APIs started out reasonably well defined they did not stay that way...because the responsibility areas were not well defined or maintained.  *Why* you modularize, and *how* you modularize, are much more important than file size.
msg173799 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-10-25 20:43
This may increasingly get off-topic, so I'll stop with generalities after this post.

I find the effect of modularization on discoverability to be two-sided.

On the one hand, splitting functionality into groups helps discoverability, since you don't have to wade through tons of API, and the risk "to see but not to recognize" is reduced.

OTOH, the risk of entirely ignoring some functionality because it is placed somehwere where you wouldn't expect it is increased. The classical example is the the gethostname() function, which many people wouldn't expect in the socket module.

I have personally given up on expecting "logical" grouping when trying to find functionality (not just in Python, but in general). Instead, I rely on full-text search, which works reasonably well these days. I do use modularity when studying "close friends" related to some API I already know.
msg173826 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-10-26 08:04
This whole refactoring project grew out of the fact that Chris and I were looking for somewhere to put common helpers for package testing. Specfically, I wrote a heap of helpers for test_runpy that I wanted to use for the new pkgutil tests.

The short term hack (because 3.3 was imminent) is that a couple of the pkgutil tests are *in* test_runpy, not because they belong there, but so they can use those helper utilities. We knew when we did it that wasn't a viable long term solution, but we didn't have a good place to put the helpers so test_pkgutil could get at them - they're packaging specific, so junking up test.support with them would be bad, and we knew from experience that a separate helper module (like script_helper) sucked for discoverability.

So, the idea of making test.support a subpackage was born. The current contents of support.py go into the new __init__.py, script_helper moves there to make it more discoverable, and the utilities for packaging tests can move out of test_runpy and into test.support.pkg_helper. Both script_helper and pkg_helper can also be easily covered in the docs under the existing "test.support" caveat.

We didn't start down this road on a whim - we did it because we ran up hard against a clear and obvious problem in the structure of the test suite's support modules.
msg173849 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-26 14:32
So IIUC the package will contain __init__.py (what is now support.py), script_helper, and pkg_helper.

One reason why I proposed to merge script_helper with support.py is that functions like assert_python*() are used in several modules already, and are generic enough to belong in support.py IMHO (that's also why I was looking for them there).  I count almost 20 modules that are currently using these functions, and there might be more that could benefit from them.

In script_helper I also see two functions that seem to deal with packages: make_pkg and make_zip_pkg.  If these get moved to pkg_helper, script_helper will be left with just an handful of generic functions.

In addition, if the functions you want to add in pkg_helper are also generic enough, it might still be better to put everything in support.py.

To summarize I think that adding a package with 3 modules is still better than having modules around in test/, but merging everything in support.py might be even better (this depends on the functions that will end up in each module, how generic they are, and how the modules are divide).
msg173906 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-10-26 23:54
Whereas I actively want to avoid *deliberately* making test.support even
more of an incoherent mess. I'm still utterly astonished you're actively
promoting the idea. Please stop telling me to write awful code.
msg173907 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-10-27 00:27
> Please stop telling me to write awful code.

I'm not telling you to write awful code, I'm telling you that IME having to deal with a single file is easier, so that's what I would personally prefer.  Clearly if other developers disagree and/or if there is too much unrelated code (for some definition of "much") in the same file, then the package can be still done.
msg173908 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-10-27 00:55
Let's not argue over generalities.  Let's wait and argue over a specific patch proposal.
msg185515 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-03-29 20:54
OK, Georg has locked the 3.2 branch now, so we can proceed with this without making any 3.2 blockers harder to deal with.
msg185588 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2013-03-30 19:55
FWIW I have no principled opinion about big vs. small test.support module, as this is purely internal code.

The reasons for this proposal as I understand them are:
- One module for script helpers, one module for package creation, etc. are not bad.
- We don’t really want to spend time and thought cleaning up test.support, but it be good to stop adding to the mess.
- Making it easier to find that some function already exists (e.g. script helpers weren’t known by all core devs) would be good.

ISTM that moving support.py to support/__init__.py and moving script_helper.py and friends to support/*.py is a quick and efficient way to address these points and make our lives a little easier:
- Script helpers, package helpers, etc. continue to be in their own file.
- Time is not lost trying to do an upfront cleanup of test.support.
- Developers looking at the test.support package are more likely to have a look at the dosctrings of the other helper modules than they do currently, and thus don’t reinvent the same helpers.
msg185590 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-03-30 20:12
FWIW the reason why I proposed to add assert_python_ok to test.support, is that from my point of view it's just one of the many *test* support utilities defined in test.support.  I think that from Nick's point of view, assert_python_ok is just one of the many *script* support utilities defined in script_helper.
Since I'm not familiar with the other utilities of script_helper, it seemed logical to me to have it where I expect all the other general utilities to be (i.e. test.support), but I figured out that Nick has a point too.
msg185618 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-03-31 06:25
Yeah, it was only when we went to add "test.pkg_helper" (so that test_runpy and test_pkgutil could share it) that we put the brakes on and decided to stop making a bad situation worse and do something different.

There are probably some other helpers we could spin out over time (like those for creating test servers). It becomes much easier to do that kind of refactoring once there's an obvious place to put them without bloating the test/support.py to crazy levels.
msg188541 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-05-06 14:08
Ah, I *thought* there was another module that started me down this path. Issue 11816 (a dis module upgrade that I finally deemed ready enough to commit) added "test.bytecode_helper", so the new test.support package will consist of at least:

support/__init__.py         # Current test.support
support/bytecode_helper.py  # Current test.bytecode_helper
support/pkg_helper.py       # New for test_runpy & test_pkgutil
support/script_helper.py    # Current test.script_helper
msg192609 - (view) Author: Indra Talip (italip) * Date: 2013-07-08 03:37
as per Nick's direction the attached patch moves test/support.py to test/support/__init__.py and includes small fixes for some of the tests that break as a consequence.
msg192616 - (view) Author: Michael Dorman (mjdorma) * Date: 2013-07-08 05:52
move_test_support.patch didn't break tests under Windows x64
msg192623 - (view) Author: Stephen Tonkin (sptonkin) * Date: 2013-07-08 06:56
Likewise, move_test_support.patch did not break things under OS X 10.8.
msg193816 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-28 10:56
New changeset 203a77e74aa7 by Nick Coghlan in branch 'default':
Close #15494: test.support is now a package rather than a module
http://hg.python.org/cpython/rev/203a77e74aa7
msg193817 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-28 11:41
New changeset 0b7ed24f7d33 by Nick Coghlan in branch '3.3':
Issue #15494: test.support is now a package rather than a module
http://hg.python.org/cpython/rev/0b7ed24f7d33
msg193955 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-30 21:33
New changeset e6f2f3eda290 by Ned Deily in branch '3.3':
Issue #15494: Install new test/support directory.
http://hg.python.org/cpython/rev/e6f2f3eda290

New changeset 4df2e094f83e by Ned Deily in branch 'default':
Issue #15494: merge from 3.3
http://hg.python.org/cpython/rev/4df2e094f83e
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59699
2020-06-15 13:05:48shihai1991setnosy: + shihai1991

pull_requests: + pull_request20067
2013-07-30 21:33:42python-devsetmessages: + msg193955
2013-07-28 11:41:14python-devsetmessages: + msg193817
2013-07-28 10:56:43python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg193816

resolution: fixed
stage: resolved
2013-07-08 06:56:38sptonkinsetnosy: + sptonkin
messages: + msg192623
2013-07-08 05:52:48mjdormasetnosy: + mjdorma
messages: + msg192616
2013-07-08 03:37:27italipsetfiles: + move_test_support.patch

nosy: + italip
messages: + msg192609

keywords: + patch
2013-05-06 14:08:37ncoghlansetmessages: + msg188541
2013-03-31 08:53:37floxsetnosy: + flox
2013-03-31 06:25:49ncoghlansetmessages: + msg185618
2013-03-30 20:12:31ezio.melottisetmessages: + msg185590
2013-03-30 19:55:56eric.araujosetnosy: + eric.araujo
messages: + msg185588
2013-03-29 20:54:05ncoghlansetmessages: + msg185515
versions: + Python 3.3
2012-10-27 00:55:52r.david.murraysetmessages: + msg173908
2012-10-27 00:27:42ezio.melottisetmessages: + msg173907
2012-10-26 23:54:09ncoghlansetmessages: + msg173906
2012-10-26 14:32:05ezio.melottisetmessages: + msg173849
2012-10-26 08:04:56ncoghlansetmessages: + msg173826
2012-10-25 20:43:53loewissetmessages: + msg173799
2012-10-25 18:59:56r.david.murraysetmessages: + msg173792
2012-10-25 18:52:40ezio.melottisetmessages: + msg173791
2012-10-25 18:44:02chris.jerdoneksetmessages: + msg173790
2012-10-25 14:50:52loewissetmessages: + msg173762
2012-10-25 13:46:59ezio.melottisetmessages: + msg173757
2012-10-25 06:27:37ncoghlansetmessages: + msg173737
2012-10-25 06:26:31pitrousetmessages: + msg173736
2012-10-25 06:22:47chris.jerdoneksetmessages: + msg173734
2012-10-25 06:17:06pitrousetmessages: + msg173733
2012-10-25 06:15:53pitrousetmessages: + msg173732
2012-10-25 00:26:23ncoghlansetmessages: + msg173727
2012-10-24 23:40:14ezio.melottisetmessages: + msg173723
2012-10-24 23:32:41ncoghlansetmessages: + msg173722
2012-10-24 23:22:22ezio.melottisetkeywords: + easy

messages: + msg173721
versions: - Python 3.3
2012-08-03 14:56:47r.david.murraysetnosy: + r.david.murray
2012-07-30 11:00:41loewissetversions: + Python 3.3
2012-07-30 10:59:53loewissetversions: - Python 3.3
2012-07-30 10:29:28ncoghlansetmessages: + msg166873
2012-07-30 10:26:40ncoghlanlinkissue15403 dependencies
2012-07-30 10:25:53ncoghlansetassignee: ncoghlan
messages: + msg166872
2012-07-30 10:03:51loewissetmessages: + msg166871
2012-07-30 08:04:54ncoghlansetstatus: closed -> open
resolution: rejected -> (no value)
messages: + msg166864
2012-07-30 06:55:54loewissetstatus: open -> closed

nosy: + loewis
messages: + msg166858

resolution: rejected
2012-07-30 02:44:05ncoghlansetmessages: + msg166854
2012-07-30 02:12:57ezio.melottisetversions: + Python 3.3, Python 3.4
nosy: + ezio.melotti

messages: + msg166852

type: enhancement
2012-07-30 01:40:48chris.jerdoneksetmessages: + msg166849
2012-07-30 01:37:10chris.jerdonekcreate