summaryrefslogtreecommitdiff
path: root/Lib/test/test_complex_args.py
Commit message (Collapse)AuthorAgeFilesLines
* Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" ↵Florent Xicluna2010-03-211-3/+30
| | | | statements.
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-34/+3
| | | | mistake. ( It may come in for sure tough)
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵Senthil Kumaran2010-01-081-3/+34
| | | | Patch by flox
* Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).Neal Norwitz2006-09-221-0/+91
These tests should be improved. Hopefully this fixes variations when flipping back and forth between fpdef and fplist. Backport candidate.