msg122751 - (view) |
Author: Michael Foord (michael.foord) * |
Date: 2010-11-29 00:52 |
Having tests in Lib/test instead of inside the package makes it easier to grep the unittest package without grepping the tests. The Windows installer has an "install without tests" option which is easier to honour if the tests aren't in the package.
However, currently all packages that have test *packages* have the tests in the package rather than inside Lib/test. (There are no test packages inside Lib/test.)
Examples: email, distutils, ctypes, importlib, json, lib2to3, sqlite3
I also maintain an external port of unittest from Python 3. This is unittest2-py3k. Moving the tests would make it *slightly* harder to keep this in sync. I'm moving to maintaining this port as a set of patches rather than a separate branch. These patches can be applied automatically to unittest from py3k head. unittest2-py3k will be built automatically by a script, so it isn't a big deal.
|
msg122815 - (view) |
Author: Ezio Melotti (ezio.melotti) * |
Date: 2010-11-29 15:34 |
3.1 should also be considered if the tests are moved. In theory this is not a bug fix so it shouldn't go in 3.1, but in practice it will make merging more difficult. This might not be a strong argument though, considering that 3.1 will accept only security fixes soon and only the few developers that work on unittest will be affected.
|
msg122817 - (view) |
Author: Michael Foord (michael.foord) * |
Date: 2010-11-29 15:42 |
The same is true for 2.7 though, and that is getting bug fixes. svnmerge would no longer work (and to making the change would mean moving the tests in a point release).
|
msg122818 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-11-29 15:52 |
+0, and I think we should hear from the maintainers of the affected packages first. For packages that are also externally maintained moving tests out may cause inconvenience to the maintainer.
|
msg122820 - (view) |
Author: Michael Foord (michael.foord) * |
Date: 2010-11-29 15:57 |
That list of examples was non-exhaustive, there is also tkinter.
|
msg122828 - (view) |
Author: R. David Murray (r.david.murray) * |
Date: 2010-11-29 16:54 |
For the email package I would be in favor of moving the tests to Lib/test. I've always found it a bit inconvenient that they are in Lib/email. After hearing of Michael's intent with unittest, and given the evolution of email5 into email5.1, I am also considering the possibility of packaging email6 (when I get to it!) as a patch set against email5, which would make this change less of an issue for email6 development.
The 2.7 sync issue is a concern, but there are certainly precedents for differing file layouts between 3.x and 2.7. I'm willing myself to deal with this for email.
Barry may have a different opinion.
All of that said, this is a general enough issue that it may be appropriate to raise it on python-dev. Even if exceptions are made for individual packages, it would be good to agree on a general "best practices" rule for this for the stdlib.
|
msg122830 - (view) |
Author: Barry A. Warsaw (barry) * |
Date: 2010-11-29 17:04 |
grepping the code without the tests doesn't seem that compelling a use case to me, given that grep and find both provide options to prune directories. I do think that moving the tests out of the email package will make it harder to maintain and distribute as a separate package. However, if RDM thinks the burden won't be too high, and the advantages of a split outweigh the disadvantages, then I defer to him. I would still make a case for distributing email6 as a package available on Cheeseshop though, otherwise it just won't get much independent use until it's in the stdlib.
|
msg122838 - (view) |
Author: R. David Murray (r.david.murray) * |
Date: 2010-11-29 18:24 |
Yes, a cheeseshop package is definitely part of the plan, I didn't mean to imply otherwise. It won't be hard to automate the packaging, and indeed I'll wind up doing that anyway even if the tests stay inside Lib/email.
I will say that that I'm probably only +0.5 on this change...I like it from a consistency standpoint (heading toward all stdlib tests being in Lib/test) and it seems like it would make the job of packagers who desire a 'no tests' option easier. But things have been working fine as they are, which is why I'm not at a full +1 :).
|
msg122841 - (view) |
Author: Éric Araujo (eric.araujo) * |
Date: 2010-11-29 18:35 |
For distutils tests, I’m ±0. I don’t see any major drawback nor any major benefit. Tarek will decide.
|
msg122847 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2010-11-29 18:49 |
Of those, it makes the most sense to move the json tests to Lib/tests. Bob is not externally maintaining the 3.x version. It's all our now.
Also, it looks like importlib is in a maintenance mode now.
There is merit to keeping 2to3, ctypes, sqlite tests separate.
Currently all of the documentation files are still under Doc so we should keep it that way and not move them under package directory trees.
|
msg122852 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2010-11-29 19:11 |
I have no issue with moving importlib into Lib/test as long as I can still run the tests with ``python3 -m test.importlib``. I actually only put the tests in importlib.tests because that was common practice amongst newer packages in the stdlib.
And just to prevent some rumour from perpetuating, importlib is not in maintenance mode. In fact the API was heavily reworked in 3.2 and I plan on exposing more of the API publicly in 3.3 and hopefully to bootstrap as well. The only thing you could think is in maintenance mode is importlib's Chesseshop package, but that's just for 2.x compatibility and for Django's benefit.
|
msg127032 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2011-01-25 18:19 |
Changing the title to reflect broader scope of this issue. Json tests were moved to Lib/test/json_tests in r86875.
|
msg179583 - (view) |
Author: R. David Murray (r.david.murray) * |
Date: 2013-01-10 19:14 |
I believe that the complete list of test files still located outside of Lib/test are:
tkinter/test
distutils/tests
ctypes/tests
lib2to3/tests
sqlite3/test
unittest/test
That last is somewhat ironic since Michael opened the issue :).
I'm considering working on some of the uncommitted patches for sqlite3, so I may take on moving those tests.
|
msg179587 - (view) |
Author: R. David Murray (r.david.murray) * |
Date: 2013-01-10 19:37 |
Talked to Michael in IRC. He isn't particularly in favor of the move of the unittest tests, but doesn't object if someone else wants to do it. So, unassigning the issue from him.
|
msg179588 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2013-01-10 19:45 |
ctypes/tests is within my area of interests and may prove to be one of the harder pieces. I'll try to move it and report the results. I have not worked with the rest, so unless it is truly trivial this will have to wait for another volunteer.
|
msg179589 - (view) |
Author: Benjamin Peterson (benjamin.peterson) * |
Date: 2013-01-10 19:58 |
I honestly don't see the point of moving tests around.
|
msg179596 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2013-01-10 20:42 |
Two reasons for collecting all of the tests in a single location:
1) Facilitates test discovery
2) It makes packaging of CPython easier for Linux distros that prefer to leave the tests out of the core package
|
msg182809 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-23 20:10 |
Patch attached to move sqlite3 tests under Lib/test, and remove Lib/test/test_sqlite.py.
Naming of files has been kept the same in the move from Lib/sqlite/test, to allow for easier merging of future patches.
|
msg182822 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-23 21:04 |
Patch attached to move Lib/lib2to3/tests to Lib/test/test_lib2to3.
|
msg182913 - (view) |
Author: Ezio Melotti (ezio.melotti) * |
Date: 2013-02-25 03:23 |
> Naming of files has been kept the same in the move from
> Lib/sqlite/test, to allow for easier merging of future patches.
This should be done with "hg mv" -- this will also allow to change the name while preserving the history if that's desirable.
|
msg182926 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-25 07:50 |
The move will need to be done by someone with commit access. These patches came from using hg mv.
After doing the move, there is some cleanup needed in each. These changes are included in the attached patches.
|
msg182952 - (view) |
Author: Éric Araujo (eric.araujo) * |
Date: 2013-02-25 15:55 |
Mercurial’s diff formats are actually able to represent file creation, deletion and rename.
|
msg182954 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-25 16:04 |
Odd. I must be doing something wrong. My test workflow was:
1. hg mv <a> <b>
1a. modify files to resolve issues from the move
2. hg diff > issueNNNN.patch # attached
3. hg revert --all
4. patch -p1 < issueNNNN.patch
Reading the hg docs more, I should have used 'hg patch issueNNNN.patch'. However trying that on a trivial file move, results in a delete/create still.
|
msg182982 - (view) |
Author: Ned Deily (ned.deily) * |
Date: 2013-02-25 20:51 |
Geoff, you need to use hg's optional "git" format diff to preserve rename info. See "hg help diffs".
|
msg183074 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-26 19:48 |
Thanks Ned! Attached is an update for sqlite tests with the right patch format (issue10572-sqlite3-2.patch).
May make sense to mention the hg diff --git format in:
http://docs.python.org/devguide/patch.html
|
msg183078 - (view) |
Author: Geoff Wilson (gmwils) * |
Date: 2013-02-26 20:12 |
Attach updated patch for lib2to3 (issue10572-lib2to3-2.patch)
|
msg183087 - (view) |
Author: Ned Deily (ned.deily) * |
Date: 2013-02-26 20:56 |
Geoff, thanks, it is documented elsewhere in the devguide but it should be mentioned there as well. I've added a note to Issue16931.
|
msg224186 - (view) |
Author: Mark Lawrence (BreamoreBoy) * |
Date: 2014-07-28 20:41 |
Can we get this into 3.5 for the reasons given in msg179596 ?
|
msg224299 - (view) |
Author: Michael Foord (michael.foord) * |
Date: 2014-07-30 11:44 |
I still dislike moving tests around.
|
msg224342 - (view) |
Author: Zachary Ware (zach.ware) * |
Date: 2014-07-30 20:29 |
I'm in favor of a move, especially for ctypes, sqlite3, unittest, and tkinter, and don't really see a reason not to move distutils and lib2to3. The IDLE tests make a certain amount of sense to stay in the idlelib folder, just because IDLE is a special case. I'm pretty sure that covers all of the packages that still have tests outside of the test package.
I think the movements should only happen on 3.5; merging forward isn't nearly as much of an issue here in the days of hg, and backports to 2.7 should be becoming fewer and farther between.
I'd be happy to take care of making the moves, if we can decide that it's worth doing (or if it's left up to me :).
|
msg225079 - (view) |
Author: Zachary Ware (zach.ware) * |
Date: 2014-08-08 18:27 |
Here's an updated patch to move the sqlite3 tests. It's a large patch because it simplifies things by renaming all of the test methods from "Checkxxx" to "testxxx". The test files are also renamed to fit the usual pattern.
|
msg225083 - (view) |
Author: Zachary Ware (zach.ware) * |
Date: 2014-08-08 19:01 |
Here's a patch that moves the ctypes tests. On this one, I remembered to patch Makefile.pre.in; my sqlite3 patch will need the equivalent change as well.
|
msg360661 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2020-01-24 23:26 |
In case anyone cares, this is still a thing.
|
msg361240 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-02-02 14:54 |
Are there any conclusions? what needs to be done?
|
msg361325 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2020-02-03 20:09 |
Someone probably needs to go through the stdlib to find which modules have tests outside of Lib/test/, and then figure out if there is still any justification for that. If there isn't then they should be moved to Lib/test.
|
msg361401 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-02-05 02:59 |
Thanks Brett,
I'll check this out over the week.
Let's take this module for instance: Lib/distutils.
I looked on this one test file by now, it looks decoupled (test_bdist.py),
1.What to look for
2.Once decided it's not the right path, just migrate to Lib/tests/"module" and make sure it runs fine?
|
msg361446 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2020-02-05 17:43 |
distutils might get pulled out at some point to it's at the bottom of the priority list for now.
Basically move the tests for a package to under Lib/test under the proper subpackage name and make sure the tests didn't break due to the move. That's pretty much the extent of this work.
|
msg362090 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-02-16 18:21 |
Moved all 6 modules tests under Lib/test/MODULE_NAME_test
Created this PR: GH-18524
|
msg362101 - (view) |
Author: Ned Deily (ned.deily) * |
Date: 2020-02-16 20:56 |
As noted in the review of the PR, keep in mind that tests are included in an installed Python instance; there is a list of test directories in the main Makefile (Makefile.pre.in) that is used by "make install". Any movement of test directories thus needs to update the Makefile and test with an installed Python.
That said, I'm not sure what this buys us. And are any of the moved tests inherited from third-party packages that we've semi-vendorized into the cpython repo?
|
msg362844 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2020-02-27 21:25 |
@ned.deily the motivation is covered in Michael's initial comment; some vendors like to leave out the tests and not having them all under 'test' prevents that from working cleanly. Plus it makes the tests more discoverable.
As for any of the projects being vendored from outside the stdlib, none of them fall under https://www.python.org/dev/peps/pep-0360/ so it isn't a worry. Plus none of them are anymore to my knowledge anyway.
|
msg363106 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-03-01 22:59 |
I've created a clean PR - will do it in 2 rounds:
This PR GH-18727, contains the modified test of ctypes, sqlite3 and tkinter modules. Once that's approved I'll deal with the other remaining 3.
|
msg364232 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-03-15 13:50 |
Before I put more time into that, here's the strategy here:
1. Module by module migration.
2. By this order
tkinter/test
distutils/tests
ctypes/tests
lib2to3/tests
unittest/test
* sqlite3/test - excluded because needs more work.
Please let me know if there is a different order or more exclusions?
|
msg364233 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-03-15 13:51 |
+ Distutils is last priority
|
msg364248 - (view) |
Author: Éric Araujo (eric.araujo) * |
Date: 2020-03-15 17:39 |
I would advise against this for two reasons:
- git does not track renames, contrart to Mercurial, so every log/diff command needs to analyse files to determine if something was moved rather than deleted + created; the matching can change depending on a command-line param, and git log needs a --follow option.
- github does not apply --follow, so history for moved files is not useful: https://github.com/idomic/cpython/commits/bpo-10572-testlibs/Lib/test/tkinter_test/test_tkinter/test_widgets.py (for some reason, annotate works: https://github.com/idomic/cpython/blame/bpo-10572-testlibs/Lib/test/tkinter_test/test_tkinter/test_widgets.py )
|
msg364312 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-03-16 12:20 |
Hey Eric,
I'm not sure what you mean, you don't recommend the change in general?
Or you just don't recommend Git for this and saying I should use Mercurial instead?
|
msg364357 - (view) |
Author: Éric Araujo (eric.araujo) * |
Date: 2020-03-16 20:44 |
Yes, I recommend against this change. Sorry for the time already spent :(
(I only named Mercurial because python-dev used it before, so I was comparing the behaviour of the two tools)
|
msg364358 - (view) |
Author: Zachary Ware (zach.ware) * |
Date: 2020-03-16 20:58 |
I'm personally still in favor of the change. This wouldn't be the first big movement of files in our repo and likely not the last, and I don't think git/GitHub's support (or lack thereof) for file moves is a good enough reason to not organize things better.
|
msg364359 - (view) |
Author: Ned Deily (ned.deily) * |
Date: 2020-03-16 21:04 |
> some vendors like to leave out the tests and not having them all under 'test' prevents that from working cleanly
Yeah, but presumably all the major distributors have long ago figured out how to do this (it's not *that* hard) and, by moving the tests now, would actually make work for them :) (Granted, that's also not that hard)
Losing the history of a bunch of files would be a much more serious concern, IMHO. If the files can't be moved without losing history, I'de be a definite -1 on this change; otherwise, a meh -0.
|
msg364448 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2020-03-17 16:57 |
I'm also still in favour of the change. While people may have worked around this that doesn't mean we need to keep forcing them to do so. People worked around our lack of booleans but we chose to still fix that. ;)
|
msg364827 - (view) |
Author: Ido Michael (Ido Michael) * |
Date: 2020-03-22 22:06 |
GH-18727
Only tkinter module for start.
|
msg389357 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2021-03-23 00:27 |
I added idlelib.idletest in May 2013 with the concurrence of Nick Coughlin, who also suggested 'idle_test' rather than just 'test'. It currently has 72 files (66 test_xyz files for idlelib modules).
Foord's opening justification for moving package tests was "Having tests in Lib/test instead of inside the package makes it easier to grep the unittest package without grepping the tests."
I presume 'tests' refers to the unittest tests but I don't understand 'easier'. Is recursive grepping really not optional for the grep he uses? In any case, if Michael as package author preferred to put them in /Lib, fine.
Having package tests in the package makes it possible to grep both package code and tests together from an editor that allows searching all files in a single directory or tree. IDLE's editor and Notepad++ are 2 examples and both have a recurse checkmark option off by default. I routinely do both types of searches of idlelib from an IDLE editor.
I have never grepped Lib/test, but if others do, would symlinks work?
For optional packages like tkinter and idlelib, having the tests in the package means that tests are automatically omitted when the package is. If they were moved, vendors wanting a clean test directory would have to write new code to omit or include package tests when the package is omitted or included.
|
msg397580 - (view) |
Author: Leonardo Freua (Leonardofreua) * |
Date: 2021-07-15 20:19 |
After so long a reason came up that prevents the movement of tests of ctypes, lib2to3, and idlelib (which even continues in the same folder, only the nomenclature was changed)?
|
msg397649 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2021-07-16 18:50 |
> After so long a reason came up that prevents the movement of tests of ctypes, lib2to3, and idlelib (which even continues in the same folder, only the nomenclature was changed)?
Time and energy.
|
msg405031 - (view) |
Author: Erlend E. Aasland (erlendaasland) * |
Date: 2021-10-26 08:26 |
A side-effect of keeping tests inside the package, is that they appear in the package contents module docstring, which may be slightly confusing to new users.
>>> import sqlite3
>>> help(sqlite3)
Help on package sqlite3:
NAME
sqlite3
DESCRIPTION
[...]
PACKAGE CONTENTS
dbapi2
dump
test (package)
Regarding history: Serhiy already moved the sqlite3 test files (see commit 3e19409d6443c66a6a7d62f58b2bb4e8330e56c4 of 2021-09-13). If one worries about needing to add the --follow switch to git log, or possibly backporting issues, that train already left the station:
$ git log --oneline Lib/sqlite3/test/test_dbapi.py | wc -l
4
$ git log --follow --oneline Lib/sqlite3/test/test_dbapi.py | wc -l
71
So, I'm +1 regarding moving the sqlite3 tests :)
|
msg405351 - (view) |
Author: miss-islington (miss-islington) |
Date: 2021-10-29 22:08 |
New changeset 62bf263a775f4444d8b5d5841cc09be3bd53e933 by Erlend Egeberg Aasland in branch 'main':
bpo-10572: Move `sqlite3` tests to `Lib/test` (GH-29304)
https://github.com/python/cpython/commit/62bf263a775f4444d8b5d5841cc09be3bd53e933
|
msg405422 - (view) |
Author: Pablo Galindo Salgado (pablogsal) * |
Date: 2021-11-01 09:58 |
New changeset 762a4dc9361f9563e158e373ba8d767b4449f23d by Erlend Egeberg Aasland in branch 'main':
bpo-10572: Fixup Lib/test/libregrtest/pgo.py (GH-29327)
https://github.com/python/cpython/commit/762a4dc9361f9563e158e373ba8d767b4449f23d
|
msg405423 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) * |
Date: 2021-11-01 10:10 |
Do we need Lib/test/test_sqlite3/__init__.py? Would not tests in package be loaded automatically?
|
msg406404 - (view) |
Author: Erlend E. Aasland (erlendaasland) * |
Date: 2021-11-16 14:13 |
> Do we need Lib/test/test_sqlite3/__init__.py? Would not tests in package be loaded automatically?
If I remove it, the test suite is not run. Maybe another change is needed for autodetection to work better.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:57:09 | admin | set | github: 54781 |
2021-11-16 14:13:17 | erlendaasland | set | messages:
+ msg406404 |
2021-11-01 10:10:17 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka messages:
+ msg405423
|
2021-11-01 09:58:02 | pablogsal | set | nosy:
+ pablogsal messages:
+ msg405422
|
2021-10-29 22:13:54 | erlendaasland | set | pull_requests:
+ pull_request27596 |
2021-10-29 22:08:22 | miss-islington | set | nosy:
+ miss-islington messages:
+ msg405351
|
2021-10-29 08:12:29 | erlendaasland | set | pull_requests:
+ pull_request27573 |
2021-10-26 08:26:56 | erlendaasland | set | messages:
+ msg405031 |
2021-07-16 18:50:53 | brett.cannon | set | messages:
+ msg397649 |
2021-07-15 20:19:08 | Leonardofreua | set | nosy:
+ Leonardofreua messages:
+ msg397580
|
2021-03-23 00:27:25 | terry.reedy | set | nosy:
+ terry.reedy messages:
+ msg389357
|
2021-01-07 00:56:35 | erlendaasland | set | pull_requests:
+ pull_request22976 |
2020-05-25 14:55:41 | Ido Michael | set | nosy:
- Ido Michael
|
2020-05-25 11:31:08 | erlendaasland | set | nosy:
+ erlendaasland
|
2020-03-22 22:06:01 | Ido Michael | set | messages:
+ msg364827 |
2020-03-17 16:57:45 | brett.cannon | set | messages:
+ msg364448 |
2020-03-16 21:04:56 | ned.deily | set | messages:
+ msg364359 |
2020-03-16 20:58:08 | zach.ware | set | messages:
+ msg364358 |
2020-03-16 20:44:30 | eric.araujo | set | messages:
+ msg364357 |
2020-03-16 12:20:48 | Ido Michael | set | messages:
+ msg364312 |
2020-03-15 17:39:37 | eric.araujo | set | messages:
+ msg364248 |
2020-03-15 13:51:58 | Ido Michael | set | messages:
+ msg364233 |
2020-03-15 13:50:41 | Ido Michael | set | messages:
+ msg364232 |
2020-03-01 22:59:40 | Ido Michael | set | messages:
+ msg363106 |
2020-03-01 22:51:24 | Ido Michael | set | pull_requests:
+ pull_request18084 |
2020-02-27 21:25:09 | brett.cannon | set | messages:
+ msg362844 |
2020-02-16 20:56:07 | ned.deily | set | messages:
+ msg362101 |
2020-02-16 18:21:28 | Ido Michael | set | messages:
+ msg362090 |
2020-02-16 18:07:18 | Ido Michael | set | pull_requests:
+ pull_request17901 |
2020-02-05 17:43:26 | brett.cannon | set | messages:
+ msg361446 |
2020-02-05 02:59:20 | Ido Michael | set | messages:
+ msg361401 |
2020-02-04 08:13:06 | asvetlov | set | nosy:
- asvetlov
|
2020-02-03 20:09:35 | brett.cannon | set | messages:
+ msg361325 |
2020-02-02 14:54:54 | Ido Michael | set | nosy:
+ Ido Michael messages:
+ msg361240
|
2020-01-24 23:26:13 | brett.cannon | set | versions:
+ Python 3.9, - Python 3.6 |
2020-01-24 23:26:08 | brett.cannon | set | messages:
+ msg360661 |
2016-09-09 00:27:31 | BreamoreBoy | set | nosy:
- BreamoreBoy
|
2016-09-08 22:58:26 | christian.heimes | set | versions:
+ Python 3.6, - Python 3.5 |
2014-08-08 19:01:34 | zach.ware | set | files:
+ issue10572-ctypes.diff
messages:
+ msg225083 |
2014-08-08 18:27:16 | zach.ware | set | files:
+ issue10572-sqlite3.diff
messages:
+ msg225079 |
2014-07-30 20:29:02 | zach.ware | set | messages:
+ msg224342 |
2014-07-30 11:44:50 | michael.foord | set | messages:
+ msg224299 |
2014-07-30 11:37:23 | berker.peksag | set | nosy:
+ berker.peksag
stage: needs patch -> patch review |
2014-07-28 20:41:43 | BreamoreBoy | set | nosy:
+ BreamoreBoy
messages:
+ msg224186 versions:
+ Python 3.5, - Python 3.4 |
2013-04-16 19:06:46 | zach.ware | set | nosy:
+ zach.ware
|
2013-02-26 20:56:00 | ned.deily | set | messages:
+ msg183087 |
2013-02-26 20:12:07 | gmwils | set | files:
+ issue10572-lib2to3-2.patch
messages:
+ msg183078 |
2013-02-26 19:48:39 | gmwils | set | files:
+ issue10572-sqlite3-2.patch
messages:
+ msg183074 |
2013-02-25 20:51:01 | ned.deily | set | nosy:
+ ned.deily messages:
+ msg182982
|
2013-02-25 16:04:21 | gmwils | set | messages:
+ msg182954 |
2013-02-25 15:55:24 | eric.araujo | set | messages:
+ msg182952 |
2013-02-25 07:50:24 | gmwils | set | messages:
+ msg182926 |
2013-02-25 03:23:04 | ezio.melotti | set | messages:
+ msg182913 |
2013-02-23 21:04:25 | gmwils | set | files:
+ issue10572-lib2to3.patch
messages:
+ msg182822 |
2013-02-23 20:10:21 | gmwils | set | files:
+ issue10572-sqlite3.patch
nosy:
+ gmwils messages:
+ msg182809
keywords:
+ patch |
2013-01-10 20:42:51 | brett.cannon | set | messages:
+ msg179596 |
2013-01-10 19:58:31 | benjamin.peterson | set | messages:
+ msg179589 |
2013-01-10 19:45:18 | belopolsky | set | messages:
+ msg179588 |
2013-01-10 19:37:49 | r.david.murray | set | assignee: michael.foord -> messages:
+ msg179587 |
2013-01-10 19:14:01 | r.david.murray | set | type: behavior -> enhancement components:
+ Tests versions:
+ Python 3.4, - Python 3.2 nosy:
+ benjamin.peterson, asvetlov
messages:
+ msg179583 stage: needs patch |
2011-01-25 18:19:05 | belopolsky | set | nosy:
barry, brett.cannon, theller, rhettinger, ghaering, belopolsky, tarek, gpolo, ezio.melotti, eric.araujo, r.david.murray, michael.foord messages:
+ msg127032 title: Move unittest test package to Lib/test -> Move test sub-packages to Lib/test |
2010-11-29 19:11:38 | brett.cannon | set | messages:
+ msg122852 |
2010-11-29 18:49:43 | rhettinger | set | messages:
+ msg122847 |
2010-11-29 18:35:39 | eric.araujo | set | messages:
+ msg122841 |
2010-11-29 18:24:37 | r.david.murray | set | messages:
+ msg122838 |
2010-11-29 17:04:28 | barry | set | messages:
+ msg122830 |
2010-11-29 16:54:37 | r.david.murray | set | messages:
+ msg122828 |
2010-11-29 16:00:39 | belopolsky | set | nosy:
+ gpolo
|
2010-11-29 15:57:04 | michael.foord | set | messages:
+ msg122820 |
2010-11-29 15:52:18 | belopolsky | set | nosy:
+ belopolsky, barry, brett.cannon, rhettinger, r.david.murray, theller, ghaering, tarek messages:
+ msg122818
|
2010-11-29 15:42:27 | michael.foord | set | messages:
+ msg122817 |
2010-11-29 15:34:37 | ezio.melotti | set | nosy:
+ ezio.melotti messages:
+ msg122815
|
2010-11-29 13:28:44 | eric.araujo | set | nosy:
+ eric.araujo
|
2010-11-29 00:52:57 | michael.foord | create | |