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: Create a unittest framework for IDLE
Type: enhancement Stage: resolved
Components: IDLE, Tests Versions: Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: Guilherme.Simões, JayKrish, Todd.Rovito, Tomoki.Imai, alex.rodas, ezio.melotti, francismb, ncoghlan, ned.deily, python-dev, r.david.murray, roger.serwy, terry.reedy, tshepang
Priority: normal Keywords: patch

Created on 2012-07-19 04:44 by terry.reedy, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
15392_idletestframework_1.patch JayKrish, 2013-04-22 02:56 Initiating Idle TestFrameWork review
idletest2.diff terry.reedy, 2013-05-16 03:30 replaces previous patch review
idletest3.diff.txt terry.reedy, 2013-05-20 23:13 review
idletest3u.diff terry.reedy, 2013-05-21 04:03 'unix/osx format' review
idletest4u.diff terry.reedy, 2013-05-22 00:21 review
frametest.py terry.reedy, 2013-05-22 05:23 Tests the test framework
Messages (60)
msg165825 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012-07-19 04:44
Idle needs a unittest framework for module test modules. This means a test directory with at least one test module, a runtest module that successfully runs that test module, any new support functions needed for that test module, and inclusion of test_idle in Lib/test.

I am thinking of something like Lib/tkinter/test, but without subdirectories. I presume there should be something like tkinter/test/runtests, but I do not know if it reflects current best practice, nor whether it should be in idlelib or in idlelib/test.

One feature of runtests and the tkinter framework is separation of tests that do and do not require a gui. This requires cooperation of writers of each test module. Buildbots can only run tests that do not require a gui and nearly everyone else wants the same. On the other hand, we need automated gui tests too. A complete test of idlelib/runtest requires a test module with both kinds of tests.

List/test has test_tk. It runs tests with enable_gui=false unless run directly (and intentionally) as the main module. (Testing test_idle would also require tests in both modes.) It checks that tkinter is available. Should test_idle also check that idle is available? (On Windows, one can install both or neither. I don't know the situation on other systems.)

This issue was inspired by #12510 and is interdependent with it. As part of that issue, I would like to convert the expanded test set to run under unittest. #12510 needs a place to put a test_calltips module. On the other hand, this issue needs a test_x module to test runtests and test_idle.

tkinter/test/support has functions that can be used in idle tests, in particular, simulate_mouse_click(). I believe a needed addition is simulate_text_entry. That is needed to really finish the calltips tests. Currently, complete testing of tooltips requires non-automated hand tests.

Would simulate_mouse_click include selecting menu items, or would that be a separate function?

With such a test framework established, we could start adding tests as part of other issues, as is normal practice.

(Note: tkinter/test is pretty skeletal, and probably could use expansion, but except for support functions immediately needed for test_calltips, that is another issue.)
msg165833 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-07-19 11:45
All the tests should run from the standard test runner tool (currently regrtest), with the GUI tests guarded by the GUI resource, which is how it works for TK.  I always run the test suite with -uall before non-trivial commits, so I do in fact run the TK gui tests on a regular basis.  I would do the same with idle.  I hope there are at least a few other developers that run with -uall on a regular basis :)

Whether or not there is value in a separate runner is a separate question.  If there is value in having one to you and the other people working on idle, then make one.  But for those of us who touch it only occasionally, the separate runner is not likely to get used.  I wasn't even aware there was one for tkinter.

There was a push a while back suggesting that best practice would be to have all tests be in the 'test' subdirectory.  I moved email/test into test/test_email, and I prefer having it there.  On the other hand, Michael prefers having unittest/test, and has kept the unittest unit tests there.  So that part is up to you, but I encourage you to consider putting them in the test subdirectory, and if you want to do that I would help out with moving the existing tkinter tests to the 'test' dir.

And yes, either way the tests should test for the presence of idle and skip if idle is not available.
msg165889 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012-07-19 23:23
I have not really used unittest, so I only know to blindly copy what has been done. Hence I need help to do better.

Do you actually get gui tests for test_tk? When I run test/test_tk from Idle editor, and hence as __main__, I only get non-gui tests in spite of enable_gui being set True. Or maybe I just did not see them. (This is actually an improvement over the normal failure of test_tk on Windows. See #10652)

Is tkinter/test/runtktests properly called a test runner?
test/test_tk uses it to gather the tests to run:
support.run_unittest(
    *runtktests.get_tests(text=False, packages=['test_tkinter']))
It is used within the ttk tests also. As I suggested above, I do not really know if we really need the equivalent.

I strongly prefer idlelib/test since it will make developing **much** easier for me on Windows. Also, it would be part of the optional install of idlelib, as tkinter/test is for tkinter.

Adding test/test_idle will not be too much use until issue #10652 is resolved so it would actually run with -m test.
msg166072 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-07-21 21:17
The screen flickers a bunch, so something involving my display is certainly happening.

As for runtktests...test suites that live in the package as opposed to the test directory require support files to gather the tests to be run.  This can be done by the test_xxxx.py file in the test directory (which is what regrtest runs), or it can be done in a function imported from the packages test directory.  For tkinter it looks like the test gathering is done in runtktests.  Most Python test_xxxx file can be run directly to run the relevant tests, and runtktests works the same way.  So yes it is a runner, but that appears to be a convenience just like for other test_xxxx files, and not anything special.
msg173304 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2012-10-19 01:33
There is now one test available to be applied from Issue16226; see http://bugs.python.org/file27613/issue16226_test.patch.  It may need to be modified depending on where the tests are ultimately put in the source tree.
msg173797 - (view) Author: Roger Serwy (roger.serwy) * (Python committer) Date: 2012-10-25 19:56
Issue7883 also has a test.
msg184927 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-03-21 23:46
Since writing this, I ran test_ttk_guionly by itself, so it would run, and saw the flickering windows. I have thought about using unitest.mock and Nick has offered to help particlarly with that.
msg185024 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-03-23 01:43
I'll start with a bit of philosophical guidance :)

1. As much as possible, push logic testing down into the non-GUI tests. Where unittest.mock can help here is when you have a piece of code to test that is *almost* independent of the GUI, but needs to call an API to either get input from the user or to send something to the screen. unittest.mock can then be set up to intercept that call, either to check that it happened as expected (display operations) or to provide a predetermined answer (input operations).

2. For the GUI tests, unittest.mock is likely to be most useful in providing predetermined input. There's only so much you can do with this, it's ultimately about ensuring that the code tested against mocked out APIs in the lower level tests at least doesn't throw exceptions when tested against the real APIs. Proper GUI testing is actually a much harder test automation problem, so it probably makes sense to focus on the non-GUI tests for now.
msg187393 - (view) Author: Tomoki Imai (Tomoki.Imai) Date: 2013-04-20 00:48
I'm a student thinking of participating in Google Summer of Code.
And want to work to create a unittest for IDLE.

Using unittest.mock seemed to be good way to test GUI.
But there is a problem.
There is no unittest.mock in Python2.
http://docs.python.org/2/library/unittest.html

I think using third party mock seemed to be ok, but not best way.
https://pypi.python.org/pypi/mock
Because, IDLE is a part of official python.
I think relying on third party module is not good.

Of cource, I would forcus on non-GUI unittest.
But GUI-test would be needed.
msg187539 - (view) Author: R. Jayakrishnan (JayKrish) * Date: 2013-04-21 23:56
The aimed versions for this unit test frame work is python 3.3, 3.4. So as Nick said, unittest.mock may have no issues on this.
As you said 3rd party modules seems not a better way.But the link you provided ( https://pypi.python.org/pypi/mock ) says ..      "mock is now part of the Python standard library, available as unittest.mock in Python 3.3 onwards." 
And yes, GUI testings 
While I was writting my proposal on this project Todd.Rovito mentioned me  " .. you should still complete some GUI tests so future developers will have a model. "
msg187545 - (view) Author: R. Jayakrishnan (JayKrish) * Date: 2013-04-22 02:56
There is a need of a proper design in whether to put tests in test sub directory or to create idlelib/test directory.

For my GSoc proposal initial draft, I suggested to start with  
Put tests in test/test_idle directory (like test/test_email would be the best practice).
Test for the presence of idle and skip if idle is not available.
Move the existing,pending tests for idle ( http://bugs.python.org/file27613/issue16226_test.patch , http://bugs.python.org/file24075/test_idlelib.py,....)  into this directory.
(which my patch 15392_idletestframework_1.patch did for me)

Considering the point terry.reedy mentioned, "Adding test/test_idle will not be too much use until issue #10652 is resolved so it would actually run with -m test", my view is, the issue #10652 on this message is on a healthy patch review, so it would actually run with -m test in near-future
Expecting your suggestions on this design decisions.
msg187562 - (view) Author: Tomoki Imai (Tomoki.Imai) Date: 2013-04-22 13:30
Oh, no support for Python2?
I think, it is too old, but still needs bug-fix supports.
IDLE for Python2 is really buggy.
For example, unicode problems in my environment. http://bugs.python.org/issue17348
It might be GUI related problem.

By the way, your proposal seemed good to me.
My proposal is almost same.
Using unittest module, make directory such as idlelib/test and write unittest there.

But I want to include Python2 and GUI support.
(So, there are unittset.mock problem)

Of cource, it is very import to concentrate on one thing (i.e Python3).
I cannot deside whether to drop Python2 support now.

I considered PEP 434 premit me writing unittest for Python2.
http://www.python.org/dev/peps/pep-0434/

How do you think?
msg187569 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-04-22 16:15
I think the issue of whether/how to test Python2 idle should be discussed on idle-dev.  One strategy is to make the tests backward compatible (so no mock).  Another possible strategy is to have an extra bit of test framework for IDLE in 2.7 that copies the tests and mock from another location in order to run tests against 2.7.  That is, the tests wouldn't be an official part of the 2.7 repro and would not be run by the buildbots.  The reason for doing that would be to allow the Python3 tests to be as rich as possible while still doing some testing on 2.7.  But that's just a thought experiment, as I said I think the full strategy should be hashed out on idle-dev (I'm not a member of that list :)
msg187587 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-04-22 20:02
When I opened this last July, I intentionally left off 2.7 for multiple reasons.

1. I knew that the new-in-3.3 mock module would probably be needed for some types of testing. (As for 3.2: at that time, I expected 3.2.4 to be released in September or October, just after 3.3.0, as would have been normal.)

2. 2.7 is yesterday's horse. I hope we fix disabling bugs before maintenance stops. I do not expect all new features to be backported. I personally have no motivation to do so if a patch does not apply cleanly, or nearly so. Also, I knew that a full test suite would not happen instantly and that 2.7 maintenance would probably be tapering off by the time one was fully in place.

3. My experience with calltips #12510: I fixed IDLE closing bugs for all versions. I did not backport all the text display improvements; the 2.7 code was different partly due to dealing with old-style classes. I did not backport the new tests I added in msg162510 and msg165057. They depend matching exact texts. They will need to be changed again when calltips are adjusted to the new multiline signatures in builtin-function docstrings. The will probably need to be changed if calltips are changed to use the new-in-3.3 signature objects. There are proposed 3.4 changes for compiling C functions that might impact calltips.

4. There was no PEP 434 ;-). While *I* considered the relaxed backport policy to be the defacto policy then, it *was* a bit fuzzy, and others disagreed. With the PEP accepted, I am more open to backporting at least some tests if someone else (like Tomoki) does most of the additional work.

(I plan to start with this issue when my development machine is back from repairs and proper set up again.)
msg187616 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-04-23 07:30
If things are fixed/added/improved on 3.x, there should be tests for them, and if they are backported on 2.7, tests should be backported as well.
If mock makes testing easier, I think it would be acceptable to use it and then have IDLE devs install a 2.7 mock and use it to run all the tests.  The tests on 2.7 could use skip decorators to be skipped if mock is missing, without having to keep these tests separate from the rest.  If necessary a script to install mock on 2.7 could be provided, and possibly used by the buildbots too.

This means that the initial framework should be backported, otherwise it won't be possible to backport any of tests that are going to use it.
FWIW the attached patch should use unittest.main() instead of test_main+run_unittest.
msg187621 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-04-23 09:01
+1 for Ezio's suggestion regarding tests that need the mock module. To simplify backporting you may want to do something like the following in a helper module:

    try:
        import unittest.mock as mock
    except ImportError:
        try:
            import mock
        except ImportError:
            mock = None

Then the individual test files would retrieve the mock attribute from the helper module and check it with the skip decorators in the tests that needed mocks.
msg187697 - (view) Author: Tomoki Imai (Tomoki.Imai) Date: 2013-04-24 12:46
I have already posted idle_dev mailing list (and, no one replied :P).

I think, Ezio's suggestion is good if we will work for Python2.
Using unittest.mock and mock to support Python2 and Python3.
My proposal for GSoC is here.
Making very initial version for Python2 and Python3 and,
 complete Python3 version and, backport it in the end.
I'll set backporting for Python2 as optional work.
My main goal is to make unittest for Python3.
msg188481 - (view) Author: Todd Rovito (Todd.Rovito) * Date: 2013-05-06 02:45
This issue appears like it is making progress.  For a very small contribution I tested JayKrish's patch and it seems to work on my Mac. The results are documented below.  Any comment from Python Core Developers on what needs to happen to get it committed? It appears to work with -m test and -v test_idle.  Thanks! 

/python.exe -m test -v test_idle
== CPython 3.4.0a0 (default:186cf551dae5+, May 5 2013, 22:41:07) [GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))]
==   Darwin-12.3.0-x86_64-i386-64bit little-endian
==   /Volumes/SecurePython3/cpython/py34/build/test_python_15812
Testing with flags: sys.flags(debug=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode=0, no_user_site=0, no_site=0, ignore_environment=0, verbose=0, bytes_warning=0, quiet=0, hash_randomization=1)
[1/1] test_idle
test_DirBrowserTreeItem (test.test_idle.test_PathBrowser.PathBrowserTest) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.000s

OK
1 test OK.
msg188649 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-05-07 13:34
I've added 2.7 to the affected versions - the core unittest framework should be present in all 3 versions, so the choice of if/when to backport a fix and its test can be made on a case-by-case basis, rather than being a foregone conclusion due to the lack of IDLE test infrastructure in 2.7

If/when mock is used in any tests, then a compatibility module isn't actually needed, 3.3 and 3.4 can just use "from unittest import mock" while 2.7 can use "mock = support.import_module('mock')" (so those tests will run if you arrange to make the mock backport from PyPI available when running the tests, but will be skipped otherwise).

Terry, are you happy with that plan? If so, over to you to get the ball rolling and commit this as a starting point :)
msg189258 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 00:11
Attached is a 3.3 patch that I *believe* is ready to commit and push.
With my Win7 repository build, I tested running one test from a file (after "if __name__ == '__main__':") or command line ('python_d -m idlelib.PathBrowser'); all idle tests with an interactive interpreter (console or idle shell, see @template.txt for input); all idle tests from the command line ('python_d -m test.test_idle'); and idle tests as part of the CPython suite (python_d -m test). I also tested versions of all but the two batch-mode tests in my 3.3.1 installation.

From what i know, I do not believe there should be much issue with the framework working on non-Windows systems. But I would not mind verification. I presume this patch will work as is with 3.4, but ditto. 2.7 may need one tweak noted below. (Testing with 2.7 is difficult for me at the moment.) Nick: yes to your 2.7 plan. PEP 343 changes things.

Once applied to all three branches I think this patch is enough to close this issue and 'get the ball rolling'. Mock, gui testing, and any other big problems should be separate issues.

The patch adds
Itest/__init__.py  (merges doc example, part of previous __init__.py)
Itest/@template  (for both test_x.py and startup from x.py)
Itest/test_calltips.py  (with first 2 of many tests)
Itest/test_pathbrowser.py  (revised, with 1 test, see note below)
test/test_idle.py  (revised skeleton of previous __init__.py)

and revises 
CallTips.py
PathBrowser.py
to run the corresponding tests when run as '__main__'.

Question: "Unittest supports skipping individual test methods and even whole classes of tests" How about skipping (possibly conditionally) an entire file -- especially test_idle, which has no classes, or and test_xxx with multiple classes?

For multiple reasons related to the fact that Idle and idlelib *are* special, as recognized by PEP 343, I want to keep the individual test files in an idlelib subdirectory. as with tkinter tests. (I changed the name from 'test', so that 'import test' will a always import Lib/test.)

* Once in idlelib, changing to Itest is easier than to ../test/test_idle. With 62 .py files in idlelib, we will be opening pairs of files a lot.

* Copying code and test files to another directory, such as an installation idlelib/, will be easier. I will be doing that to run with new features and test things in the installation environment.

* PEP343 makes most of idlelib/* a private arena. Test/* is a public tree mainly for the buildbots. Tests put there are supposed to pass. In brief, I personally feel much more comfortable mucking around in a private arena with a small public window that can selectively open and closed as needed.

* We need an Itest directory anyway for things that do not belong in test/*. @template is an example, and I have in mind a couple of non-buildbot test scripts. We may also want an idle-specific support module, as tkinter has.

* Once people install Python so it runs, some still have problems running Idle. They ask a class instructor or someone else; post here, python-list, stackoverflow, or elsewhere; or give up. Sometimes the problem is with tkinter, sometimes with idle, sometimes with their knowledge. A good diagnosis script should save support time and user frustration. Both tkinter and idle tests should be available for this. The Windows installer makes the 17 mb of test/* optional.

Other changes from the previous patch:
* Use unittest.main to run tests.

* Guard test_idle execution with tkinter import, as it is _tkinter, not idlelib that might not be built. I left the guard for idlelib since someone who deletes idlelib/* might forget to delete test/test_idle.

* Exceptions raised outside of self.assertXyz (and self.fail) calls are regarded as an error in the test code rather than a failure of the code tested (26.3.4. Organizing test code). So, there being no 'assertNotRaises' context manager, I added "try:...except ...: self.fail()" to test_pathbrowser.py so a failure will be reported as such and not as an error. If there is a better way to do this, let me know.

Since 3.x chains exceptions and prints the original traceback, no message argument is needed with self.fail to explain the failure. For 2.7, I believe one should be added.

Note: to empirically test that a test fails properly, it must be run with code that does not work properly. This is a problem with writing tests after the fact for code that works properly.

I checked all 62 idlelib/*.py files for a test to see what we have to work with: the answer is 'not much'. Less than half the files have a test. All but 2 that do bring up a window and require a human to key, click, and look according to a script that is not provided. (This is not to say that the existing code will not be helpful for some gui tests.) One of the 2 remaining text tests prints multiple pages (a config file) for a person to check. By coincidence, the only automated tests are the ones in CallTips.py, the first file I looked at, last summer.
msg189261 - (view) Author: Todd Rovito (Todd.Rovito) * Date: 2013-05-15 02:09
Terry I think you have a typo you mean PEP434 (http://www.python.org/dev/peps/pep-0434/) where PEP343 exists.  Can you please confirm?
msg189262 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 02:11
Yes, of course. Thanks for correcting.  434, 434, 434,...
msg189264 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-15 03:05
A few comments about the patch:
1) I would prefer a more explicit idle_test instead of Itest (assuming "I" means idle);
2) having idle_test in Lib/test would be better if possible (see #10572);
3) the tests should only be in idle_test, and not in the "if __name__ == '__main__':" of the files;
4) I'm not sure the @template file is necessary.  It could be documented somewhere else though (see e.g. http://docs.python.org/3/library/test.html#writing-unit-tests-for-the-test-package).

IOW putting all tests in a separate dir is a good thing, and the dir could either be in Lib/test or in Lib/idlelib.  All the tests should be inside this dir, except for Lib/test/test_idle.py that should be the entry point used to run all the tests in idle_test (see e.g. the tests for ctypes, email, and json).  Individual tests in idle_test can be run on their own, and they should use the "if __name__ == '__main__': unittest.main()" idiom.

> Question: "Unittest supports skipping individual test 
> methods and even whole classes of tests" How about skipping
> (possibly conditionally) an entire file -- especially test_idle,
> which has no classes, or and test_xxx with multiple classes?

You can raise unittest.SkipTest or use support.import_module().  This works fine if you run the tests through regrtest, but be aware that unittest itself only sees this as a skip from 3.4 (see #16935).

> * Exceptions raised outside of self.assertXyz (and self.fail)
> calls are regarded as an error in the test code rather than a
> failure of the code tested (26.3.4. Organizing test code).
> So, there being no 'assertNotRaises' context manager, I added
> "try:...except ...: self.fail()" to test_pathbrowser.py so a
> failure will be reported as such and not as an error. If
> there is a better way to do this, let me know.

If it's supposed to work the try/except is not necessary IMHO.  By this logic every line of code should be wrapped in a try/except :)

> Since 3.x chains exceptions and prints the original traceback,
> no message argument is needed with self.fail to explain the
> failure. For 2.7, I believe one should be added.

If you still want to keep the try/except, I would provide a meaningful failure message in any case.

> Note: to empirically test that a test fails properly, it must
> be run with code that does not work properly. This is a
> problem with writing tests after the fact for code that works
> properly.

It's not difficult to break the code to test that test works though :)

> I checked all 62 idlelib/*.py files for a test to see what we
> have to work with: the answer is 'not much'. Less than half
> the files have a test.

If possible I think these should all be moved to idle_test.  You can also add an additional resource to regrtest to skip the ones that require manual intervention.
msg189267 - (view) Author: Todd Rovito (Todd.Rovito) * Date: 2013-05-15 03:38
Terry,
   On my Mac with "hg revert -a" and "hg pull -u" the patch fails to apply on CallTips.py and PathBrowser.py under the latest version of Python 3.4.  Here is the output when I try to apply the patch:

rovitotv-pc:py34 rovitotv$ hg import --no-commit /Volumes/SecurePython3/source/15392idletests.diff 
applying /Volumes/SecurePython3/source/15392idletests.diff
patching file Lib/idlelib/CallTips.py
Hunk #1 FAILED at 263
1 out of 1 hunks FAILED -- saving rejects to file Lib/idlelib/CallTips.py.rej
patching file Lib/idlelib/Itest/@template.txt
patching file Lib/idlelib/Itest/__init__.py
patching file Lib/idlelib/Itest/test_calltips.py
patching file Lib/idlelib/Itest/test_pathbrowser.py
patching file Lib/idlelib/PathBrowser.py
Hunk #1 FAILED at 94
1 out of 1 hunks FAILED -- saving rejects to file Lib/idlelib/PathBrowser.py.rej
patching file Lib/test/test_idle.py
adding Lib/idlelib/Itest/@template.txt
adding Lib/idlelib/Itest/__init__.py
adding Lib/idlelib/Itest/test_calltips.py
adding Lib/idlelib/Itest/test_pathbrowser.py
adding Lib/test/test_idle.py
abort: patch failed to apply
 
I even tried using the tr command to remove the ^M characters from the .diff file and that still didn't allow me to apply the patch.  Maybe it is my setup???  It is late here so I am going to bed but will play with it some more tomorrow.  Thanks for your hard work, the patch looks like a good start. Thanks!
msg189268 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-15 04:55
Have you tried applying it to 3.3?
msg189269 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 05:54
Todd, the last two commits, both rather trivial, I merged from 3.3 to 3.4 would not apply for no reason I could see. I wonder is there is something wrong with the repository. I wrote about the problem on the committer's list a few days ago, but got no response yet. It probably fell thru the cracks. I will try applying to 3.4 on windows tomorrow.
msg189270 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-15 06:05
> I wonder is there is something wrong with the repository.

The repo looks ok to me.  You could try to run "hg verify" on your machine id you want to make sure your clone is ok.

> I wrote about the problem on the committer's list a few days ago,
> but got no response yet. It probably fell thru the cracks.

I've seen the mail but it's hard to tell what the problem was after the fact.  Next time it happens I suggest you to come on #python-dev and ask there before continuing.
msg189271 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-05-15 07:11
Just a quick note on the directory naming: idlelib/idle_test sounds like a good option to me.

Putting it under idlelib makes it easy for distros to carve it out along with the rest of Idle, as well as making it clear that it falls under the purview of PEP 434

Expanding Itest -> idle_test is a combination of "Itest" being somewhat cryptic in the first place, and then the potential for 1/I/l/i glyph confusion (depending on font) making it worse.

Other than that, +1 to what Ezio said (I wouldn't worry about moving any more existing tests for this patch though - starting to move self-tests out of the individual IDLE files to the new test suite can be a good next step)
msg189274 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 07:48
Ezio, thank you for the response.

1. I care more about where the directory of tests is than what it is called. 'idle_test' or 'idletest' or whatever would be fine. Lets make that the last bikeshed item ;-).

2. I looked as #10572. It was originally about moving unittest tests from unittest/xx to test/yy, and then broadened to other packages. Michael F. gave two reasons for the move.

2A. Easier to grep without recursing into the test directory. Barry already refuted this, pointing out that grep/find have options to not recurse. The Idle equivalent, Find in Files, has a little checkbox
 [] Recurse down subdirectories.
I think Michael had this point backwards. The advantage of having tests with the code is to make grepping both at once possible. I am sure I will want to do this while developing the tests. So add this to my list of reasons to put the directory under idlelib.

2B. Would honor the Windows Install without Tests option. This is strictly a matter of saving space by disabling function. I agree that this is appropriate for nearly all packages, but I already explained why I want to evade that option: tkinter and idle are exceptional in that they are the only two packages that people regularly have problems running. So I think people should have those tests available, even if none of the others.

2 (again). Other people opined that package maintainers should have some say in the matter and that there might be exceptions.

3. Many modules have more or useless 'sanity-check' tests run with the 'if __name__' mechanism. I think *all* of these should be replaced with unittest.main(xxx, verbosity=2, exit=False) to run the full test module. If the code module test has anything valuable that is not in the test module, it should be moved there; the rest should be deleted.

I plan to eventually do this with all such 'tests' in idlelib/*.py. However, this needs to be done one by one. Some current tests have program errors; my 'file' to 'open' patch last week was the first fix. Some put up a blank window, with no indication of what a person is expected to do to perform the test. Some put up a window that will not close by normal means. All except the two in idletasks.diff require human intervention, which is not acceptible for buildbots. Question: is there a way for a test to detect being run by a buildbot?

4. I already used @template.txt to alter CallTips.py and start test_calltips.py and I want to use it for all the other 60 (or whatever) test files. I will (re)read the test-writing section and possibly suggest a patch. But Idle-specific info and code does not belong there.

(5.) unittest.SkipTest is what I was looking for. I do not believe that support.import_module() will allow skipping if, or unless, the test is running on a specific platform. I need to look at #16935.

Is Idle CPython only? If so, that should be a condition of test/test_idle.py running. Ah, testing the imports of tkinter and idlelib already takes care of that.

(6.) My concern and possible confusion about raising exceptions came from Jayakrishnan's patch
+    def test_DirBrowserTreeItem(self):
+        # Issue16226 - make sure that getting a sublist works
+        d = PathBrowser.DirBrowserTreeItem('')
+        d.GetSubList()
in relation to the doc saying "Note that in order to test something, we use one of the assert*() methods provided by the TestCase base class." There is no such method. The doc follows with "If the test fails, an exception will be raised, and unittest will identify the test case as a failure. Any other exceptions will be treated as errors." The 'test above is to raise, or not, an 'other exception' and I took 'treated as errors' to mean that raising an 'other exception' is an error. It certainly makes test failure counted as an error rather than an error and indistinguishable from test code errors. I guess when the test is fleshed out, there should and will be some assert about the result of d.getsublist(). So I could delete the try-except.

(7.) A human-intervention resource. I will leave that for later. 
My next step after this one is moving tests from CallTips.py to the new test_calltips.py (3. above).
msg189275 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 08:10
For future reference, there is an idle specific issue that I do not think has been mentioned yet. Idle can run in one process, but the default mode now, and perhaps only mode sometime in the future, is two processes communicating through a socket. Testing two process communication requires two test processes, not just one. Tests will pass in one process without testing the full normal process. For instance:

    def fetch_tip(self, expression):
        try:
            rpcclt = self.editwin.flist.pyshell.interp.rpcclt
        except AttributeError:
            rpcclt = None
        if rpcclt:
            return rpcclt.remotecall("exec", "get_the_calltip",
                                     (expression,), {})
        else:
            return get_argspec(get_entity(expression))

I believe this works because fetch_tip executed in the idle process makes a remote call that results in fetch_tip being executed in the remote process, where self has no editwin and hence control falls through to the last line.

A normal, naive test of fetch_tip will 'work' because it will simply fall through to the last line, which in this case is mostly redundant with separate tests of get_entity and get_argspec. It seems to me that a full test suite must at some point test that the actual communication works, and that this cannot all be done with mocks.
msg189276 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 08:16
Thanks Nick. Tomorrow I should change the directory name, delete try-except, commit, and move onward on the path laid out.
msg189284 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-15 14:16
Having idle_test under idlelib is fine with me if it makes your life easier.

> 3. Many modules have more or useless 'sanity-check' tests run
> with the 'if __name__' mechanism. I think *all* of these should
> be replaced with unittest.main(xxx, verbosity=2, exit=False)
> to run the full test module. If the code module test has
> anything valuable that is not in the test module,
> it should be moved there; the rest should be deleted.

All the sanity checks (at least the reasonably sane) should be converted to unittest and moved from the modules to the respective test_* modules.  The others should be removed, and I don't think we have to keep the "if __name__" in the modules (the test modules should have it though).
Specifying the verbosity=2 in all the test modules might not be a good idea.  If you are running all the tests at once, that level of verbosity will just get in the way (and I'm not sure you can change it easily).  If you are running individual tests modules you should be able to change the verbosity from the command line.

> Question: is there a way for a test to detect being run by a buildbot?

You can handle this by adding a new resource to test.support.  The tests will normally be skipped unless you explicitly run them using "./python -m test -uhumanneeded" or you run the test file directly (you can enable the resource in the "if __name__").

> 4. I already used @template.txt to alter CallTips.py and start
> test_calltips.py and I want to use it for all the other 60 (or
> whatever) test files. I will (re)read the test-writing section
> and possibly suggest a patch.

As I suggested earlier, I think the "main" function in Lib/idlelib/CallTips.py should be converted to unittest and moved to test_calltips.  CallTips.py should not include any test-related code and no "if __name__" IMHO.

> But Idle-specific info and code does not belong there.

Agreed.  Actually once the initial conversion is done I don't think documenting it so important, since it will be easier to look at all the others tests and see what they do than finding the documentation that explain how things should be done.


> (5.) unittest.SkipTest is what I was looking for. I do not believe
> that support.import_module() will allow skipping if, or unless,
> the test is running on a specific platform. I need to look at #16935.

Nope, but you can do "if sys.platform() == '...': raise unittest.SkipTest(...)".  The TL;DR version of #16935 is that it will break test discovery on 3.3, but that's not a big problem.

> (6.) My concern and possible confusion about raising
> exceptions came from Jayakrishnan's patch

Either if you get a failure or an error, it still means there's something wrong :)
msg189290 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-15 18:06
Tests have at least two very different purposes. One is test-driven development of code (and tests) by developers. The other is regression detection by buildbots. "if __name__" in code modules, in addition to test modules, makes the first much easier. First, the unittest.main call in the test module must be appropriate for the buildbots. Since buildbots do not execute the corresponding call in the code module, it can and and should tuned for development, which I have done. The 'if' block is also a place for any other code specific to developer tests, such as enabling a 'humanneeded' resource. Second, when editing with Idle, F5 in an editor window runs the test in the Idle shell, where right-click, click on a traceback line takes one back to the corresponding file and line. At least on Windows, using the console and console interpreter is painful by comparison. All this is true when editing any Python file, not just Idle files, so I would be disappointed if someone went through the stdlib deleting, rather than revising the 'if __name__' blocks.
msg189313 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-05-15 22:01
Terry, the unittest and regrtest command lines are *built* for TDD - you
rely on test discovery and selection to run the appropriate tests for what
you're working on.

However, the point about F5 in IDLE is well made, and a reasonable
rationale for ensuring at least the IDLE implementation files support
running their tests that way.

While it doesn't need to be extensive, it would be good to capture some of
these points in a Idle/idle_tests/README file.
msg189339 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-16 03:30
New patch: I renamed Itest to idle_test everywhere and re-ran tests; removed try-except from test_pathbrowser.py; and renamed @template to @README and rewrote. It applies cleanly to 3.4 on my system. The only problem applying to 2.7 is CallTips.py, which has different test code at the end. That will be easily fixed.
msg189564 - (view) Author: Todd Rovito (Todd.Rovito) * Date: 2013-05-19 02:10
I still have the same problem with the patch it will not apply for me on Python 3.4.  Based on Ezio's suggestion I used hg verify where I got three warnings unrelated to IDLE, but just to make sure I did a brand new checkout.  Even after a new checkout the patch failed to apply.  Then I tried on my CentOS 6.4 box and the patch would not apply.  I am wondering has anybody else tried to apply this patch on a Mac OS X or Linux machine and had it work?  I still admit I could be doing something stupid.....

No idea where to go from here...I might try this on Windows which I think is the system Terry is using because I noticed the file has Ctrl M at the end of the lines.
msg189565 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-05-19 02:22
I just did an hg pull/hg up in my 3.4 (default) checkout on linux:

rdmurray@hey:~/python/p34>patch -p1 <idletest2.diff 
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/CallTips.py
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/PathBrowser.py
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/idle_test/@README.txt
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/idle_test/__init__.py
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/idle_test/test_calltips.py
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/idlelib/idle_test/test_pathbrowser.py
(Stripping trailing CRs from patch; use --binary to disable.)
patching file Lib/test/test_idle.py

However, when I try to run test_idle via regrtest I get:

...
  File "/home/rdmurray/python/p34/Lib/unittest/loader.py", line 113, in loadTestsFromName
    parent, obj = obj, getattr(obj, part)

AttributeError: 'module' object has no attribute 'test_idle'
msg189627 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-19 22:57
I was really sure that 'python_d -m test' worked a week ago, in the sense that test_idle was run without incident in its proper alphabetical sequence,  before I said so and uploaded the patch. Now, there are (different) error messages with both 'python_d -m test' and 'python_d -m test test_idle'. (I did not try the latter before, only 'python_d -m test.test_idle', with the added '.' whose importance I now understand.) One of the two error messages includes what David reported. When I can, will report the other, and also will try to 'hg update' to a week ago to reproduce the remembered success. If I cannot, I will try options to determine the boundaries of the bug in the interacton between unittest and regrtest and a decent workaround that avoids duplicating code while running under both unittest and regrtest.

I sent Todd the Windows files to examine, modify, and test.

(Nick: neither unittest nor regrtest can run tests hidden within patches on the tracker. However, the point is currently moot for this issue. It might someday be a python-dev or python-ideas post.)
msg189712 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-20 23:13
Problem solved at least for me with a new patch:

D:\Python\dev\py33\PCbuild> python_d -m test test_idle
[1/1] test_idle
Warning -- os.environ was modified by test_idle
1 test altered the execution environment:
    test_idle

...> python_d -m test
... 
[154/373/2] test_httpservers
[155/373/2] test_idle
[156/373/2] test_imaplib
...

The new patch has two simple changes to test_idle.

1. The traceback David and I saw started in regrtest.runtest_inner:
    the_package = __import__(abstest, globals(), locals(), [])
The rest of the calls were in unittest. This line runs fine in isolation, but it does not matter; regrtest does not want the test to run when it imports the file. Add 'if name ...' to guard main(...).

2. With no test_main present, the key line of runtest_inner is
    tests = unittest.TestLoader().loadTestsFromModule(the_module)
Unittest.main makes the same call to look for, among other things, a load_tests function. Import load_tests from idlelib.idle_test.
msg189713 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-20 23:44
I will delete 'sim' as an abbreviation for 'support import module'.
Does this otherwise seem ready to apply? This time I am really sure it works here, because I ran the 2 tests twice each and cut and pasted the evidence.
msg189717 - (view) Author: Guilherme Simões (Guilherme.Simões) * Date: 2013-05-21 02:08
I'm having the same problem as Todd when I apply the patch in my Mac... I have no idea why though.
msg189723 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-21 04:03
The change to the two idlelib/*.py files enables those files to run their corresponding idle_test/test_*.py file when run as a main script. They have nothing to do with running test/test_idle.py. So please try running the latter.
python -m test.test_idle  # direct, without regrtest
python -m test test_idle  # indirect, with regrtest

I upgraded(?) TortoiseHG (2.8, with hg 2.6) and found the setting for Notepad++ to create new files in 'unix/osx' format, which I presume refers to line endings. Does the new file apply better for you?  If so, I will try to always use this for uploaded patches.

---
Question: when I import this patch (either format) to 3.4, it applies the chunks and makes the changes with no apparent problem, but then 'aborts' -- but not really, because it leaves the changes:
  abort: edit failed: vi exited with status 1
  [command returned code 255 Mon May 20 23:08:16 2013]
The appear to be a failure of the commit message editor? If so, it is tolerable, but it worked a week ago (regression in upgrade?), though i have seen it before. Manual says

"If the patch you are importing does not have a commit message, Mercurial will try to launch your editor, just as if you had tried to import the patch from the command line. Your ui.editor needs to be a GUI app to make this work correctly."

I get same message after setting editor to notepad or notepad++, so 'vi' mystifies me. Anyone have any idea?
----
msg189733 - (view) Author: Guilherme Simões (Guilherme.Simões) * Date: 2013-05-21 08:56
Now I can apply the patch successfully and everything seems to be working. Thanks, Terry.
msg189775 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-05-21 17:57
regrtest now works for me, as does running test_idle.py directly and the simple minded unittest call:

  ./python -m unittest test.test_idle

However, running an individual test doesn't.  I don't see this as a show-stopper for committing this, but rather something we should figure out how to fix later.

  rdmurray@hey:~/python/p34>./python -m unittest test.test_idle
...
----------------------------------------------------------------------
Ran 3 tests in 0.003s

OK
rdmurray@hey:~/python/p34>./python -m unittest -v test.test_idle
test_bad_entity (idlelib.idle_test.test_calltips.Test_get_entity) ... ok
test_good_entity (idlelib.idle_test.test_calltips.Test_get_entity) ... ok
test_DirBrowserTreeItem (idlelib.idle_test.test_pathbrowser.PathBrowserTest) ... ok

----------------------------------------------------------------------
Ran 3 tests in 0.004s

OK
rdmurray@hey:~/python/p34>./python -m unittest -v test.test_idle.idlelib.idle_test.test_calltips.Test_get_entity.test_bad_entity
Traceback (most recent call last):
  File "/home/rdmurray/python/p34/Lib/runpy.py", line 160, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/home/rdmurray/python/p34/Lib/runpy.py", line 73, in _run_code
    exec(code, run_globals)
  File "/home/rdmurray/python/p34/Lib/unittest/__main__.py", line 19, in <module>
    main(module=None)
  File "/home/rdmurray/python/p34/Lib/unittest/main.py", line 124, in __init__
    self.parseArgs(argv)
  File "/home/rdmurray/python/p34/Lib/unittest/main.py", line 171, in parseArgs
    self.createTests()
  File "/home/rdmurray/python/p34/Lib/unittest/main.py", line 178, in createTests
    self.module)
  File "/home/rdmurray/python/p34/Lib/unittest/loader.py", line 145, in loadTestsFromNames
    suites = [self.loadTestsFromName(name, module) for name in names]
  File "/home/rdmurray/python/p34/Lib/unittest/loader.py", line 145, in <listcomp>
    suites = [self.loadTestsFromName(name, module) for name in names]
  File "/home/rdmurray/python/p34/Lib/unittest/loader.py", line 113, in loadTestsFromName
    parent, obj = obj, getattr(obj, part)
AttributeError: 'module' object has no attribute 'idlelib'
msg189787 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-22 00:21
It works when one uses the right dotted name ;-)

D:\Python\dev\py33\PCbuild>python_d -m unittest -v idlelib.idle_test.test_calltips.Test_get_entity.test_bad_entity
test_bad_entity (idlelib.idle_test.test_calltips.Test_get_entity) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.000s
OK

idlelib.idle_test.test_calltips.Test_get_entity works too. I did not know about these options; I added them to @README as part of revising it. I also added verbosity and exit args to all if-name unittest.main calls, which are ignored anyway when either unittest or regrtest import the modules.  New patch uploaded.

With this additional confirmation, I am about ready to commit -- when I feel fresh and ready to monitor the buildbots. But I notice that the non-executable @README has 7 ways to run all or part of the suite, most of which have appeared in this issue. Even with history retrieval, I am tired of retyping to test changes. I should have started with an executable test suite test (.bat or .py using subproccess for the command lines). Then I could have just added the two cases above and re-run after today's edit. I may do this first.
msg189790 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-22 05:23
Attached file tests framework by running idle_tests 6 different ways. Run with the executable that you want to run the tests with as is uses sys.executable. I plan to move it into idle_tests.
msg190129 - (view) Author: Todd Rovito (Todd.Rovito) * Date: 2013-05-27 03:52
Patch does indeed apply and I get good results!!!!!  The patch is well done and provides a nice example on how to write unit tests.
+1 for making the commit from me

R. David Murray you used the patch command while I used "hg import --no-commit mywork.patch" as specified in the Python Developers Guide.  Next time I have an issue I will use patch and see if it works better.
msg190144 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-05-27 15:18
Heh.  Yeah, I use patch because I don't just work with mercurial/python, and I find the patch command simpler to use for applying patches in general, since I never want an autocommit.   (The exception would be if I'm applying a patch that involves extended diff stuff that patch doesn't recognize.)  It makes sense that the devguide talks about import, though, since the patches here always ought to be things generated by hg and thus handleable by import.  I'm not sure why this one would have failed for you.
msg190165 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-28 01:34
New changeset 24c3e7e08168 by Terry Jan Reedy in branch '3.3':
Issue #15392: Create a unittest framework for IDLE.
http://hg.python.org/cpython/rev/24c3e7e08168
msg190166 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-28 01:35
Before committing, I experimented with disabling test/test_idle. The simple and safe method is to comment out the 'load_tests' line. With no tests discovered, all pass ;-). Without verbosity, there is no indication that there were none. A little harder, and needing to be tested for typos before committing, is to add this line before that line:
  import unittest; raise unittest.SkipTest('skip for buildbots')
Regrtest (py -m test test_idle) registers the unexpected skip. Unittest (py -m test.test_idle) exits with a traceback. This is recorded in an updated README, which also incorporates Todd's suggestion. I also touched up test/test_idle.py.

If buildbots do not break, I will work on 2.7.
msg190174 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-28 04:25
Last I checked, test_idle passes on the stable buildbots.

But it fails on a machine without threads, such as http://buildbot.python.org/all/builders /AMD64%20Fedora%20without%20threads%203.3/builds/752/steps/test/logs/stdio
On this machine, thread-related tests are skipped: some seem expected, some not.

The chain of imports is test_pathbrowser <- PathBrowser <- ClassBrowser <- PyShell <- threading <- _thread. Since a PyShell import is required to run Idle (PyShell.main), even with just the editor, I will put the _thread import check in test_idle itself rather than sprinkling it throughout the test suite as dependencies are discovered.

(Besides the bother of the latter, the dependency could go away if PyShell only uses threading to runs user code in the same process, or delayed if it is used for other features that might not be used.)
msg190189 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2013-05-28 10:15
Building without threads is generally going to be for embedded systems without a GUI anyway, so I think it's fine to just skip the entire IDLE test suite when real threads aren't available.
msg190266 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-29 02:22
New changeset 968f6094788b by Terry Jan Reedy in branch '3.3':
Issue #15392: Do not run tests if threading/_thread not available. Otherwise
http://hg.python.org/cpython/rev/968f6094788b
msg190376 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-30 18:48
New changeset 93eb15779050 by Terry Jan Reedy in branch '2.7':
Issue #15392: Create a unittest framework for IDLE, 2.7 version.
http://hg.python.org/cpython/rev/93eb15779050
msg190384 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-05-30 21:35
Biggest change is no support module in 2.7, so in test_idle.py import inside try:except to skip if dependencies not present. Minor changes in CallTips.py and test_calltips.py. Buildbots are fine. This meets my initial goal; issue done.

I opened #18103 for consideration of gui tests. But except for improving the existing no-buildbot, human-needed tests, I consider that a lower priority right now.
msg190385 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-05-30 21:49
The test.support module was renamed in Python 3 from test.test_support in Python 2.  While the 3x support has expanded and diverged somewhat, with a bit of try hacking it should be possible to minimize the source differences between the 2.7 and 3.x tests.
msg190386 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-30 22:17
For the other modules we just use test.test_support on 2.x and test.support in 3.x, without using try/except and without trying to maintain source compatibility with both.  You might get a merge conflict every once in a while, but I don't think that's a big deal.
msg190387 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-30 22:25
New changeset 6159916c712e by Terry Jan Reedy in branch '2.7':
Issue #15392: Use test.test_support, as used test.support in 3.x.
http://hg.python.org/cpython/rev/6159916c712e
msg190390 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-31 01:06
New changeset 16fea8b0f8c4 by Terry Jan Reedy in branch '3.3':
Issue #15392: Finish news entry.
http://hg.python.org/cpython/rev/16fea8b0f8c4
msg202083 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-11-04 04:10
New changeset dac6aea39814 by Ned Deily in branch '2.7':
Issue #15392: Install idlelib/idle_test.
http://hg.python.org/cpython/rev/dac6aea39814

New changeset e52dad892521 by Ned Deily in branch '3.3':
Issue #15392: Install idlelib/idle_test.
http://hg.python.org/cpython/rev/e52dad892521

New changeset 06239fe781fe by Ned Deily in branch 'default':
Issue #15392: merge from 3.3
http://hg.python.org/cpython/rev/06239fe781fe
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59597
2013-11-04 04:10:21python-devsetmessages: + msg202083
2013-05-31 01:06:35python-devsetmessages: + msg190390
2013-05-30 22:25:11python-devsetmessages: + msg190387
2013-05-30 22:17:27ezio.melottisetmessages: + msg190386
2013-05-30 21:49:01ned.deilysetmessages: + msg190385
2013-05-30 21:36:06terry.reedysetstage: commit review -> resolved
2013-05-30 21:35:53terry.reedysetstatus: open -> closed
2013-05-30 21:35:36terry.reedysetresolution: fixed
messages: + msg190384
2013-05-30 18:48:13python-devsetmessages: + msg190376
2013-05-29 02:22:54python-devsetmessages: + msg190266
2013-05-28 10:15:40ncoghlansetmessages: + msg190189
2013-05-28 04:25:14terry.reedysetmessages: + msg190174
2013-05-28 01:35:16terry.reedysetmessages: + msg190166
2013-05-28 01:34:34python-devsetnosy: + python-dev
messages: + msg190165
2013-05-27 15:18:01r.david.murraysetmessages: + msg190144
2013-05-27 03:52:05Todd.Rovitosetmessages: + msg190129
2013-05-22 05:23:44terry.reedysetfiles: + frametest.py

messages: + msg189790
2013-05-22 00:21:18terry.reedysetfiles: + idletest4u.diff

messages: + msg189787
2013-05-21 17:57:27r.david.murraysetmessages: + msg189775
2013-05-21 08:56:13Guilherme.Simõessetmessages: + msg189733
2013-05-21 04:03:46terry.reedysetfiles: + idletest3u.diff

messages: + msg189723
2013-05-21 02:08:40Guilherme.Simõessetmessages: + msg189717
2013-05-20 23:44:25terry.reedysetmessages: + msg189713
stage: patch review -> commit review
2013-05-20 23:13:59terry.reedysetfiles: + idletest3.diff.txt

messages: + msg189712
2013-05-20 22:10:27terry.reedysetfiles: - idletests.diff
2013-05-19 22:57:40terry.reedysetmessages: + msg189627
2013-05-19 20:56:19Guilherme.Simõessetnosy: + Guilherme.Simões
2013-05-19 02:22:19r.david.murraysetmessages: + msg189565
2013-05-19 02:10:18Todd.Rovitosetmessages: + msg189564
2013-05-17 15:07:03alex.rodassetnosy: + alex.rodas
2013-05-16 03:30:35terry.reedysetfiles: + idletest2.diff

messages: + msg189339
2013-05-15 22:01:43ncoghlansetmessages: + msg189313
2013-05-15 18:06:57terry.reedysetmessages: + msg189290
2013-05-15 14:16:54ezio.melottisetmessages: + msg189284
2013-05-15 08:16:06terry.reedysetmessages: + msg189276
2013-05-15 08:10:30terry.reedysetmessages: + msg189275
2013-05-15 07:48:54terry.reedysetmessages: + msg189274
2013-05-15 07:11:01ncoghlansetmessages: + msg189271
2013-05-15 06:05:35ezio.melottisetmessages: + msg189270
2013-05-15 05:54:32terry.reedysetmessages: + msg189269
2013-05-15 04:55:36ezio.melottisetmessages: + msg189268
2013-05-15 03:38:05Todd.Rovitosetmessages: + msg189267
2013-05-15 03:05:30ezio.melottisetmessages: + msg189264
2013-05-15 02:11:50terry.reedysetmessages: + msg189262
2013-05-15 02:09:31Todd.Rovitosetmessages: + msg189261
2013-05-15 00:11:36terry.reedysetfiles: + idletests.diff

messages: + msg189258
stage: test needed -> patch review
2013-05-07 13:34:23ncoghlansetmessages: + msg188649
versions: + Python 2.7
2013-05-06 02:45:45Todd.Rovitosetmessages: + msg188481
2013-04-24 12:46:11Tomoki.Imaisetmessages: + msg187697
2013-04-23 09:01:28ncoghlansetmessages: + msg187621
2013-04-23 07:30:22ezio.melottisetmessages: + msg187616
2013-04-22 20:02:09terry.reedysetmessages: + msg187587
2013-04-22 16:15:27r.david.murraysetmessages: + msg187569
2013-04-22 13:30:24Tomoki.Imaisetmessages: + msg187562
2013-04-22 02:56:14JayKrishsetfiles: + 15392_idletestframework_1.patch
keywords: + patch
messages: + msg187545
2013-04-21 23:56:10JayKrishsetnosy: + JayKrish
messages: + msg187539
2013-04-20 00:48:31Tomoki.Imaisetnosy: + Tomoki.Imai
messages: + msg187393
2013-03-23 01:43:16ncoghlansetmessages: + msg185024
2013-03-22 19:11:08francismbsetnosy: + francismb
2013-03-22 09:29:29tshepangsetnosy: + tshepang
2013-03-21 23:46:43terry.reedysetnosy: + ncoghlan

messages: + msg184927
versions: + Python 3.4, - Python 3.2
2012-11-18 23:28:00roger.serwylinkissue12274 dependencies
2012-10-25 19:56:59roger.serwysetmessages: + msg173797
2012-10-21 05:54:54Todd.Rovitosetnosy: + Todd.Rovito
2012-10-19 01:33:31ned.deilysetnosy: + ned.deily
messages: + msg173304
2012-07-22 20:01:45ezio.melottisetnosy: + ezio.melotti
2012-07-21 21:17:27r.david.murraysetmessages: + msg166072
2012-07-19 23:23:25terry.reedysetmessages: + msg165889
2012-07-19 11:45:38r.david.murraysetnosy: + r.david.murray
messages: + msg165833
2012-07-19 04:44:40terry.reedycreate