diff options
author | Michael Foord <michael@voidspace.org.uk> | 2013-11-23 13:29:23 (GMT) |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2013-11-23 13:29:23 (GMT) |
commit | e28bb15054e23f79ae979a52e01fa18e9bb96b42 (patch) | |
tree | 3cd17bba292454fffe3ac579650baf43ba552d40 /Misc | |
parent | 8933521b3dec9a6ac55b91f2ff604528381a157c (diff) | |
download | cpython-e28bb15054e23f79ae979a52e01fa18e9bb96b42.zip cpython-e28bb15054e23f79ae979a52e01fa18e9bb96b42.tar.gz cpython-e28bb15054e23f79ae979a52e01fa18e9bb96b42.tar.bz2 |
Issue 17457: extend test discovery to support namespace packages
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Misc/python-wing5.wpr | 18 |
2 files changed, 21 insertions, 0 deletions
@@ -479,6 +479,9 @@ Core and Builtins Library ------- +- Issue #17457: unittest test discovery now works with namespace packages. + Patch by Claudiu Popa. + - Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. Patch by David Edelsohn. diff --git a/Misc/python-wing5.wpr b/Misc/python-wing5.wpr new file mode 100644 index 0000000..0e1ae63 --- /dev/null +++ b/Misc/python-wing5.wpr @@ -0,0 +1,18 @@ +#!wing +#!version=5.0 +################################################################## +# Wing IDE project file # +################################################################## +[project attributes] +proj.directory-list = [{'dirloc': loc('..'), + 'excludes': [u'.hg', + u'Lib/unittest/__pycache__', + u'Lib/unittest/test/__pycache__', + u'Lib/__pycache__', + u'build', + u'Doc/build'], + 'filter': '*', + 'include_hidden': False, + 'recursive': True, + 'watch_for_changes': True}] +proj.file-type = 'shared' |