summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_py3kwarn.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Deprecate Bastion and rexec for 3.0.Brett Cannon2008-05-101-1/+2
|
* Deprecate the pure module for 3.0.Brett Cannon2008-05-091-1/+10
|
* Deprecate test.testall for removal in 3.0.Brett Cannon2008-05-091-0/+2
|
* Deprecate the new module for removal in 3.0.Brett Cannon2008-05-091-1/+1
|
* Add Py3k warnings to os.path.walkBenjamin Peterson2008-05-091-0/+11
|
* Deprecate the user module for removal in 3.0.Brett Cannon2008-05-081-1/+1
|
* The mutex module has been deprecated for removal in 3.0.Brett Cannon2008-05-081-1/+1
|
* Deprecate the imputil module for removal in 3.0.Brett Cannon2008-05-081-1/+1
|
* Deprecate the audiodev module for 3.0.Brett Cannon2008-05-061-1/+35
|
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-9/+9
| | | | EOL 80 limit and supply more alternatives in warning messages.
* #2355: py3k warning for buffer().Georg Brandl2008-03-251-0/+5
|
* #2348: add py3k warning for file.softspace.Georg Brandl2008-03-211-0/+10
|
* #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack ↵Georg Brandl2008-03-211-0/+10
| | | | Diederich.
* #2358: add py3k warning to sys.exc_clear().Georg Brandl2008-03-211-0/+5
|
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-11/+0
|
* Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh.Raymond Hettinger2008-03-191-0/+14
|
* Use sys.py3kwarning instead of trying to trigger a Py3k-related warning.Brett Cannon2008-03-191-8/+6
|
* Added zip, map, filter to future_bultins (#2171)David Wolever2008-03-191-0/+11
|
* Add py3k warnings for code and method inequality comparisons. This should ↵Steven Bethard2008-03-181-0/+29
| | | | resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code.
* Add py3k warnings for object, type, cell and dict comparisons. This should ↵Steven Bethard2008-03-181-0/+60
resolve issue2342 and partly resolve issue2373.