History log of /external/python/cpython2/Lib/test/test_grammar.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
93e51aac540f0dbd795e709a6fad0b9a62a5ae73 07-Jun-2014 Benjamin Peterson <benjamin@python.org> allow the keyword else immediately after (no space) an integer (closes #21642)
/external/python/cpython2/Lib/test/test_grammar.py
ab731a3556af935304da10804e2b3c94274637c6 02-Dec-2011 Ezio Melotti <ezio.melotti@gmail.com> #8414: add more tests for "assert". Initial patch by Gregory Nofi.
/external/python/cpython2/Lib/test/test_grammar.py
c2077b0d9b5bf99768c6f396bf7ae6c41b682465 15-Mar-2011 Ezio Melotti <ezio.melotti@gmail.com> #11565: Fix several typos. Patch by Piotr Kasprzyk.
/external/python/cpython2/Lib/test/test_grammar.py
bc27c6a5aa75a8f52304ecd311fbadef4ec621ce 19-Mar-2010 Florent Xicluna <florent.xicluna@gmail.com> Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown.
/external/python/cpython2/Lib/test/test_grammar.py
d80b4bfd0b291d543c682d7dac0841de0192a238 17-Mar-2010 Ezio Melotti <ezio.melotti@gmail.com> #7092: silence some more py3k warnings.
/external/python/cpython2/Lib/test/test_grammar.py
b646547bb45fe1df6abefd94f892c633798d91d2 11-Jan-2010 Alexandre Vassalotti <alexandre@peadrop.com> Issue #2333: Backport set and dict comprehensions syntax.
/external/python/cpython2/Lib/test/test_grammar.py
ee936a21308679654b2d458166ff094ed735fef7 10-Jan-2010 Alexandre Vassalotti <alexandre@peadrop.com> Issue #2335: Backport set literals syntax from Python 3.x.
/external/python/cpython2/Lib/test/test_grammar.py
ce8e33a095030e7af94f58f9da196b240bdf0476 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
/external/python/cpython2/Lib/test/test_grammar.py
3ddc435af6873c6304058d7bcbcb19ee4fba7781 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
/external/python/cpython2/Lib/test/test_grammar.py
b2e31a1c63aee016fe457f9328c30d74b746429f 31-Oct-2009 Benjamin Peterson <benjamin@python.org> add some checks for evaluation order with parenthesis #7210
/external/python/cpython2/Lib/test/test_grammar.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_grammar.py
465089271fe32e8e5c573abeca13489553d27982 29-May-2009 Benjamin Peterson <benjamin@python.org> add with statements
/external/python/cpython2/Lib/test/test_grammar.py
80f0ed5bb1b38a615d92bdf2b3b3dad854dd06d9 19-Aug-2008 Benjamin Peterson <benjamin@python.org> allow keyword args to be passed in after *args #3473
/external/python/cpython2/Lib/test/test_grammar.py
a161f6070b455ac43aa4e414d7b64e6a80a37978 15-Jun-2008 Georg Brandl <georg@python.org> Forward-port new test from r64300.
/external/python/cpython2/Lib/test/test_grammar.py
d21fb4c2e097dd72d1772a6f0325cc45f9b20f30 05-Mar-2008 Amaury Forgeot d'Arc <amauryfa@gmail.com> Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions::

>>> f(**g(1=2))
XXX undetected error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable

instead of the expected SyntaxError: keyword can't be an expression

Will backport.
/external/python/cpython2/Lib/test/test_grammar.py
5224d28d38eb784f17c2fed3f48368285df6d17a 23-Feb-2008 Christian Heimes <christian@cheimes.de> Patch #1759: Backport of PEP 3129 class decorators
with some help from Georg
/external/python/cpython2/Lib/test/test_grammar.py
16570f59caecde43b13b0e5f4c9328e4ceded544 24-Jan-2008 Amaury Forgeot d'Arc <amauryfa@gmail.com> #1920: when considering a block starting by "while 0", the compiler optimized the
whole construct away, even when an 'else' clause is present::

while 0:
print("no")
else:
print("yes")

did not generate any code at all.

Now the compiler emits the 'else' block, like it already does for 'if' statements.

Will backport.
/external/python/cpython2/Lib/test/test_grammar.py
14404b68d8c5a501a2f5ee6f45494865b7b38276 19-Jan-2008 Georg Brandl <georg@python.org> Fix #1679: "0x" was taken as a valid integer literal.
Fixes the tokenizer, tokenize.py and int() to reject this.
Patches by Malte Helmert.
/external/python/cpython2/Lib/test/test_grammar.py
6290305e6722c20e17d3c73bd6a30c6448bead83 19-May-2007 Collin Winter <collinw@gmail.com> Backport PEP 3110's new 'except' syntax to 2.6.
/external/python/cpython2/Lib/test/test_grammar.py
85dbec6da74d4e5e83d0ff9c03155ecef8feea83 04-Nov-2006 Neal Norwitz <nnorwitz@gmail.com> Bug #1588287: fix invalid assertion for `1,2` in debug builds.

Will backport
/external/python/cpython2/Lib/test/test_grammar.py
abd8a336a3ab390a2ea4b15a0ecd187e482001af 03-Nov-2006 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_grammar.py
facd273198689d9c083056e55fca95c1db348d0e 29-Oct-2006 Georg Brandl <georg@python.org> Test assert if __debug__ is true.
/external/python/cpython2/Lib/test/test_grammar.py
b21e0815bf5a6d6a3e795354e3c9a9afde8f24f7 28-Oct-2006 Georg Brandl <georg@python.org> make test_grammar pass with python -O
/external/python/cpython2/Lib/test/test_grammar.py
c6fdec6d7eef0582baefd77b4a51da9b69326a37 28-Oct-2006 Georg Brandl <georg@python.org> Convert test_global, test_scope and test_grammar to unittest.

I tried to enclose all tests which must be run at the toplevel
(instead of inside a method) in exec statements.
/external/python/cpython2/Lib/test/test_grammar.py
dac090d3e62cadd24fc6b73ab177bf98326c1849 05-Sep-2006 Neal Norwitz <nnorwitz@gmail.com> Bug #1520864 (again): unpacking singleton tuples in list comprehensions and
generator expressions (x for x, in ... ) works again.

Sigh, I only fixed for loops the first time, not list comps and genexprs too.
I couldn't find any more unpacking cases where there is a similar bug lurking.

This code should be refactored to eliminate the duplication. I'm sure
the listcomp/genexpr code can be refactored. I'm not sure if the for loop
can re-use any of the same code though.

Will backport to 2.5 (the only place it matters).
/external/python/cpython2/Lib/test/test_grammar.py
edef2be4af973f1766b593cf48188db2e320dcbe 12-Jul-2006 Neal Norwitz <nnorwitz@gmail.com> Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.
/external/python/cpython2/Lib/test/test_grammar.py
ced6cddc031b099e995f4cbf8e9162f3951be826 12-Apr-2006 Thomas Wouters <thomas@python.org> Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test
for the bogus failure.
/external/python/cpython2/Lib/test/test_grammar.py
33b730e33cb0a63f4030d1587a6196dcde36e965 27-Mar-2006 Neal Norwitz <nnorwitz@gmail.com> Fix SF bug #1458903 with AST compiler.

def foo((x)): was getting recognized as requiring tuple unpacking
which is not correct.

Add tests for this case and the proper way to unpack a tuple of one:
def foo((x,)):

test_inpsect was incorrect before. I'm not sure why it was passing,
but that has been corrected with a test for both functions above.
This means the test (and therefore inspect.getargspec()) are broken in 2.4.
/external/python/cpython2/Lib/test/test_grammar.py
03bdedd574beaa880e1bbd31034dd840e6a4f8be 28-Feb-2006 Neal Norwitz <nnorwitz@gmail.com> Update comments
/external/python/cpython2/Lib/test/test_grammar.py
7b03bade2b9fcb833043f2c2690fbc2de76290a7 28-Feb-2006 Jeremy Hylton <jeremy@alum.mit.edu> Test case to cover subscription bug from SF 1333982
/external/python/cpython2/Lib/test/test_grammar.py
dca3b9c797f6dd4b08d590fa2aa1031e22ab598e 27-Feb-2006 Thomas Wouters <thomas@python.org> PEP 308 implementation, including minor refdocs and some testcases. It
breaks the parser module, because it adds the if/else construct as well as
two new grammar rules for backward compatibility. If no one else fixes
parsermodule, I guess I'll go ahead and fix it later this week.

The TeX code was checked with texcheck.py, but not rendered. There is
actually a slight incompatibility:

>>> (x for x in lambda:0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: iteration over non-sequence

changes into

>>> (x for x in lambda: 0)
File "<stdin>", line 1
(x for x in lambda: 0)
^
SyntaxError: invalid syntax

Since there's no way the former version can be useful, it's probably a
bugfix ;)
/external/python/cpython2/Lib/test/test_grammar.py
f8d403dd972a354fadc939d54dc0a1c45ffda327 11-Dec-2005 Neal Norwitz <nnorwitz@gmail.com> SF #1377897, Bus error in ast

If a line had multiple semi-colons and ended with a semi-colon, we would
loop too many times and access a NULL node. Exit the loop early if
there are no more children.
/external/python/cpython2/Lib/test/test_grammar.py
3e0055f8c65c407e74ce476b8e2b1fb889723514 20-Oct-2005 Jeremy Hylton <jeremy@alum.mit.edu> Merge ast-branch to head

This change implements a new bytecode compiler, based on a
transformation of the parse tree to an abstract syntax defined in
Parser/Python.asdl.

The compiler implementation is not complete, but it is in stable
enough shape to run the entire test suite excepting two disabled
tests.
/external/python/cpython2/Lib/test/test_grammar.py
4ebc7e3bd0a3ed0a56b1a0e5816127c18d2ae8ae 09-Apr-2005 Brett Cannon <bcannon@gmail.com> Add test for ``class B1(): pass``.
/external/python/cpython2/Lib/test/test_grammar.py
1a4ddaecc732c207fa69890db87ac4b47da867b8 31-Aug-2004 Anthony Baxter <anthonybaxter@gmail.com> SF patch #1007189, multi-line imports, for instance:
"from blah import (foo, bar
baz, bongo)"
/external/python/cpython2/Lib/test/test_grammar.py
354433a59dd1701985ec8463ced25a967cade3c1 19-May-2004 Raymond Hettinger <python@rcn.com> SF patch #872326: Generator expression implementation
(Code contributed by Jiwon Seo.)

The documentation portion of the patch is being re-worked and will be
checked-in soon. Likewise, PEP 289 will be updated to reflect Guido's
rationale for the design decisions on binding behavior (as described in
in his patch comments and in discussions on python-dev).

The test file, test_genexps.py, is written in doctest format and is
meant to exercise all aspects of the the patch. Further additions are
welcome from everyone. Please stress test this new feature as much as
possible before the alpha release.
/external/python/cpython2/Lib/test/test_grammar.py
70a6b49821a3226f55e9716f32d802d06640cb89 12-Feb-2004 Walter Dörwald <walter@livinglogic.de> Replace backticks with repr() or "%r"

From SF patch #852334.
/external/python/cpython2/Lib/test/test_grammar.py
6c9e130524533263b690e86639a36b6f3e7a8eeb 30-Nov-2003 Guido van Rossum <guido@python.org> - Removed FutureWarnings related to hex/oct literals and conversions
and left shifts. (Thanks to Kalle Svensson for SF patch 849227.)
This addresses most of the remaining semantic changes promised by
PEP 237, except for repr() of a long, which still shows the trailing
'L'. The PEP appears to promise warnings for operations that
changed semantics compared to Python 2.3, but this is not
implemented; we've suffered through enough warnings related to
hex/oct literals and I think it's best to be silent now.
/external/python/cpython2/Lib/test/test_grammar.py
f545baa0cce0fd92d5cd0d507e19c848ce9d95e8 16-Jun-2003 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_grammar.py
4d508adae3101434ae62be1c140e9877673dc257 21-May-2003 Jeremy Hylton <jeremy@alum.mit.edu> Fix for SF [ 734869 ] Lambda functions in list comprehensions

The compiler was reseting the list comprehension tmpname counter for each function, but the symtable was using the same counter for the entire module. Repair by move tmpname into the symtable entry.

Bugfix candidate.
/external/python/cpython2/Lib/test/test_grammar.py
66b1259dbc2cf4aaefd779d76c4a83fe8003bafd 12-Feb-2003 Guido van Rossum <guido@python.org> SF #660455 : patch by NNorwitz.

"Unsigned" (i.e., positive-looking, but really negative) hex/oct
constants with a leading minus sign are once again properly negated.
The micro-optimization for negated numeric constants did the wrong
thing for such hex/oct constants. The patch avoids the optimization
for all hex/oct constants.

This needs to be backported to Python 2.2!
/external/python/cpython2/Lib/test/test_grammar.py
f0253f2bc585ed5d6e446d78b3538550ec00af24 29-Aug-2002 Guido van Rossum <guido@python.org> Restore the hex/oct constant tests that Barry commented out for fear
of FutureWarnings. Added a comment explaining the situation.
/external/python/cpython2/Lib/test/test_grammar.py
18bd11205d5a477e9be9cd70a3cbcc7eeae6fc9b 29-Aug-2002 Barry Warsaw <barry@python.org> Fixed three exceptions in the Plain integers test, although I'm not
sure these are the best fixes.

- Test maxint-1 against the negative octal constant -020000000000

- Comment out the tests for oct -1 and hex -1, since 037777777777 and
0xffffffff raise FutureWarnings now and in Python 2.4 those
constants will produce positive values, not negative values. So the
existing test seems to test something that won't be true in 2.4.
/external/python/cpython2/Lib/test/test_grammar.py
266e6b1f4be03ce2c95f328e0856f5cbac3b6347 28-Aug-2002 Barry Warsaw <barry@python.org> Quite down some FutureWarnings.
/external/python/cpython2/Lib/test/test_grammar.py
408b6d34de2b1a6ba690557def435adce9314184 31-Jul-2002 Barry Warsaw <barry@python.org> Complete the absolute import patch for the test suite. All relative
imports of test modules now import from the test package. Other
related oddities are also fixed (like DeprecationWarning filters that
weren't specifying the full import part, etc.). Also did a general
code cleanup to remove all "from test.test_support import *"'s. Other
from...import *'s weren't changed.
/external/python/cpython2/Lib/test/test_grammar.py
4ab7adbd944c72b9f308e940524ca31a10e52bd8 09-Dec-2001 Finn Bock <bckfnn@worldonline.dk> The initial patch #468662 was not applied quite verbatim. This should one
will fix the remaining Jython issues.

This closes patch "[ #490411 ] Jython and test_grammar.py".
/external/python/cpython2/Lib/test/test_grammar.py
7d3dff2b390272dec07ca687f53ad34bd00df39b 10-Oct-2001 Jeremy Hylton <jeremy@alum.mit.edu> SF patch [ #468662 ] Allow jython to complete test_grammar

The behavior of co_varnames in the presence of nested argument tuples
is not consistent across Python and Jython. Test each platform
separately.
/external/python/cpython2/Lib/test/test_grammar.py
80d373cbd0eb5c84ca857152a388a7c3056cb362 26-Sep-2001 Thomas Wouters <thomas@python.org> Test case for SF bugs #463359 and #462937, added to test_grammar for lack of
a better place. Excessively fragile code, but at least it breaks when
something in this area changes!
/external/python/cpython2/Lib/test/test_grammar.py
dbb718fa8775731666bb9cbc73662fadee41ea8f 21-Sep-2001 Guido van Rossum <guido@python.org> Make these modules work when Python is compiled without Unicode support.
/external/python/cpython2/Lib/test/test_grammar.py
9f448150c85d4447b7c7f39b43851a0edc150bdf 27-Aug-2001 Tim Peters <tim.peters@gmail.com> Fix another test still expecting overflow on big int literals.
/external/python/cpython2/Lib/test/test_grammar.py
e241e29f3d0c4a2e4c7beee018ae409beb4239de 19-Mar-2001 Jeremy Hylton <jeremy@alum.mit.edu> Add test for a list comprehension that is nested in the left-hand part
of another list comp. This caused crashes reported as SF bugs 409230
and 407800.

Note that the new tests are in a function so that the name lookup code
isn't affected by how many *other* list comprehensions are in the same
scope.
/external/python/cpython2/Lib/test/test_grammar.py
2922ea8235c183cb35c3415b5888967af55812fa 01-Mar-2001 Jeremy Hylton <jeremy@alum.mit.edu> Add test case for global stmt at module level.
Fix test_grammar so that it ignores warning about global stmt at
module level in exec.
/external/python/cpython2/Lib/test/test_grammar.py
f828e2d7370bf02e79bd4e58e63656332166b1dc 19-Feb-2001 Jeremy Hylton <jeremy@alum.mit.edu> Add simple section for assert, including assert w/ lambdas
/external/python/cpython2/Lib/test/test_grammar.py
4779399e9f4ff6fe7734fa9931aa6df82a98da24 19-Feb-2001 Jeremy Hylton <jeremy@alum.mit.edu> Add test for syntax error on "x = 1 + 1".
Move check_syntax() function into test_support.
/external/python/cpython2/Lib/test/test_grammar.py
97a01674b25739e0fc9e534dacf5a683d8b399e0 09-Feb-2001 Jeremy Hylton <jeremy@alum.mit.edu> update test cases for recent compiler changes: exec/import * in nested
functinos and cell vars with */** parameters
/external/python/cpython2/Lib/test/test_grammar.py
10fb3863994a7242dd6f86bf8d571d30338f2061 09-Feb-2001 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_grammar.py
3faa52ecc4aeb30f8913b4dd105184f6f7bc733d 01-Feb-2001 Jeremy Hylton <jeremy@alum.mit.edu> Allow 'continue' inside 'try' clause
SF patch 102989 by Thomas Wouters
/external/python/cpython2/Lib/test/test_grammar.py
483638c9a865d504b1131c098f010590103415dd 01-Feb-2001 Jeremy Hylton <jeremy@alum.mit.edu> Undo recent change that banned using import to bind a global, as per
discussion on python-dev. 'from mod import *' is still banned except
at the module level.

Fix value for special NOOPT entry in symtable. Initialze to 0 instead
of None, so that later uses of PyInt_AS_LONG() are valid. (Bug
reported by Donn Cave.)

replace local REPR macros with PyObject_REPR in object.h
/external/python/cpython2/Lib/test/test_grammar.py
ac25a38841b4b14176e52bddeb67fec9e0a81f84 30-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> add test for illegal imports
/external/python/cpython2/Lib/test/test_grammar.py
619eea6821a0c749d2f86d247fa3f7d28d867681 25-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> PEP 227 implementation

test_new: new.code() noew takes two more arguments
test_grammer: Add a bunch of test cases for lambda (not really PEP 227 related)
/external/python/cpython2/Lib/test/test_grammar.py
92e9f29aecff6e28b59843cd5446b7984dc928f7 25-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> add extra tests to verify that co_varnames is being set up properly

also normalize checks for syntax errors and delete commented out
definition of verify.
/external/python/cpython2/Lib/test/test_grammar.py
578ceee04226d94322e29dbdb26c0919c8e18fa4 23-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> Add simple test of list comprehension that uses a name that isn't
otherwise used in the same code block. (Not sure this is the right
place, but there is no test_list_comprehensions.py.)
/external/python/cpython2/Lib/test/test_grammar.py
e1bb5f9814a9dffbc05c5c5a24fe15082a8b3e04 19-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> make error msg more informative when test of exec fails
/external/python/cpython2/Lib/test/test_grammar.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_grammar.py
132dce22469f476f399d1bbc6d1cc2f7ba0110cc 13-Dec-2000 Fred Drake <fdrake@acm.org> Update the code to better reflect recommended style:

Use != instead of <> since <> is documented as "obsolescent".
Use "is" and "is not" when comparing with None or type objects.
/external/python/cpython2/Lib/test/test_grammar.py
004d5e6880940ddbb38460986ac62ee0f1bae97d 23-Oct-2000 Fred Drake <fdrake@acm.org> Make reindent.py happy (convert everything to 4-space indents!).
/external/python/cpython2/Lib/test/test_grammar.py
7e3e1c1ece9173b10b2e89848f814d0c346a869d 11-Oct-2000 Barry Warsaw <barry@python.org> Added test cases for extended printing to an instance. This picked up
a bug in JPython where the instance had to have a flush() method.
/external/python/cpython2/Lib/test/test_grammar.py
d1ba443206b535f41154f10b9d56d4fc76a1a9d8 19-Sep-2000 Marc-André Lemburg <mal@egenix.com> This patch adds a new Python C API called PyString_AsStringAndSize()
which implements the automatic conversion from Unicode to a string
object using the default encoding.

The new API is then put to use to have eval() and exec accept
Unicode objects as code parameter. This closes bugs #110924
and #113890.

As side-effect, the traditional C APIs PyString_Size() and
PyString_AsString() will also accept Unicode objects as
parameters.
/external/python/cpython2/Lib/test/test_grammar.py
9182b45a5a9670c316f1391bc31f824191d8e3ef 29-Aug-2000 Barry Warsaw <barry@python.org> Added tests of "print >> None"
/external/python/cpython2/Lib/test/test_grammar.py
46dfa5f4ed16c64edc845fffd4a5e2517415a2d6 22-Aug-2000 Skip Montanaro <skip@pobox.com> require list comprehensions to start with a for clause
/external/python/cpython2/Lib/test/test_grammar.py
efc92eec3377819476f5b0cd0f6afe64baeb0df2 21-Aug-2000 Barry Warsaw <barry@python.org> PEP 214, Extended print Statement, has been accepted by the BDFL.

Additional test cases for the extended print form.
/external/python/cpython2/Lib/test/test_grammar.py
803d6e5451cbf0416bfb252eedba36ff2e354fac 12-Aug-2000 Skip Montanaro <skip@pobox.com> list comprehensions. see

http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470

for details.
/external/python/cpython2/Lib/test/test_grammar.py
aed0d8deb0c810db32f5370c0f089266bb349962 29-Mar-2000 Jeremy Hylton <jeremy@alum.mit.edu> add test cases for Greg Ewing's extended call syntax patch
/external/python/cpython2/Lib/test/test_grammar.py
505043f35ee96e1733e8e055bdb53cf2c0e231c9 16-Apr-1997 Guido van Rossum <guido@python.org> No need to define assert, it's built in.
/external/python/cpython2/Lib/test/test_grammar.py
51b1c1c145ca818356f7857ed98203bcf166043f 04-Mar-1995 Guido van Rossum <guido@python.org> avoid math, don't abort when overflow check fails
/external/python/cpython2/Lib/test/test_grammar.py
1f97612e643d80e704d75ef108bea2f4a54c79e1 10-Jan-1995 Guido van Rossum <guido@python.org> Fix exec test so presence of __builtins__ doesn't break it
/external/python/cpython2/Lib/test/test_grammar.py
b6775db241f5fe5e3dc2ca09fc6c9e6164d4b2af 01-Aug-1994 Guido van Rossum <guido@python.org> Merge alpha100 branch back to main trunk
/external/python/cpython2/Lib/test/test_grammar.py
dd8cb446e19cb24131227bd66aa690b34e64a75a 29-Dec-1993 Guido van Rossum <guido@python.org> Some minute changes.
/external/python/cpython2/Lib/test/test_grammar.py
b31c7f732aea6abf6ce24d3da7fd67b2172acec9 11-Nov-1993 Guido van Rossum <guido@python.org> * test_select.py: (some) tests for built-in select module
* test_grammar.py, testall.out: added test for funny things in string literals
* token.py, symbol.py: definitions used with built-in parser module.
* tokenize.py: added double-quote recognition
/external/python/cpython2/Lib/test/test_grammar.py
e65cce5eec23812d77a54095209c923937cc3c92 08-Nov-1993 Guido van Rossum <guido@python.org> * string.py: added rindex(), rfind(); changed index() to interpret
negative start indices starting from the right.
* ftplib.py: debug() -> set_debuglevel(); change demo to use __init__().
* os.py: added execl, execlp, and execvp.
* lambda.py: removed (now that we have built-in map, reduce, bagof, lambda)
* test_b{1,2}.py, testall.out: added tests for bagof, lambda, map, reduce
* commands.py: use os, not posix
* test_grammar.py: make it easy to disable non-portable int overflow tests
* dis.py: don't abuse range()
/external/python/cpython2/Lib/test/test_grammar.py
b3b09c97ce0b40a282553b0366addc879a115eb4 22-Oct-1993 Guido van Rossum <guido@python.org> added builtin b/w compat module.
changed testing of exec.
/external/python/cpython2/Lib/test/test_grammar.py
85f1820ee15faec7961056ace378f2d444419c1c 27-Nov-1992 Guido van Rossum <guido@python.org> Added some new tests and two new files for testing: test_types.py
(testing operations on built-in types) and autotest.py (automatic
regression testing).
/external/python/cpython2/Lib/test/test_grammar.py
33693ea92a8e4947daffb1f7b6be460c38c75b9b 03-Apr-1992 Guido van Rossum <guido@python.org> '+' no longer accepted for varargs list
/external/python/cpython2/Lib/test/test_grammar.py
627efd94e97d9e7fadba7f863beca5993a91a274 31-Mar-1992 Guido van Rossum <guido@python.org> Some weird forms of try statements are no longer allowed.
/external/python/cpython2/Lib/test/test_grammar.py
3bead0984c802a2f709076bb9c8531fc67f56ee8 27-Jan-1992 Guido van Rossum <guido@python.org> Initial revision
/external/python/cpython2/Lib/test/test_grammar.py