[pypy-commit] pypy py3.5-async: (plan_rich) Fix cast in memoryobject for rpython

2016-08-05 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86042:da8ab61904e8 Date: 2016-08-05 20:58 +0200 http://bitbucket.org/pypy/pypy/changeset/da8ab61904e8/ Log:(plan_rich) Fix cast in memoryobject for rpython diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py --- a/

[pypy-commit] pypy py3.5-async: Add tests for BUILD_MAP_UNPACK

2016-08-05 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86043:0f39cfd33706 Date: 2016-08-05 21:42 +0200 http://bitbucket.org/pypy/pypy/changeset/0f39cfd33706/ Log:Add tests for BUILD_MAP_UNPACK diff --git a/pypy/interpreter/test/test_interpreter.py b/pypy/interpreter/test/test_interpreter.py

[pypy-commit] pypy py3.5-async: Add tests for build_set/tuple/list_unpack

2016-08-05 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86044:60ce08921aef Date: 2016-08-05 22:06 +0200 http://bitbucket.org/pypy/pypy/changeset/60ce08921aef/ Log:Add tests for build_set/tuple/list_unpack diff --git a/pypy/interpreter/test/test_interpreter.py b/pypy/interpreter/test/test_int

[pypy-commit] pypy py3.5-async: Fix test for build_set_unpack, add test for build_map_unpack_with_call, fix getFuncDesc

2016-08-06 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86049:7f49d892fb4d Date: 2016-08-06 20:40 +0200 http://bitbucket.org/pypy/pypy/changeset/7f49d892fb4d/ Log:Fix test for build_set_unpack, add test for build_map_unpack_with_call, fix getFuncDesc diff --git a/pypy/interpreter/pyop

[pypy-commit] pypy py3.5-async: Add test for asyncio checking a GIL initialization error on running "await asyncio.open_connection"

2016-08-08 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86077:3e98b6f5791a Date: 2016-08-08 18:00 +0200 http://bitbucket.org/pypy/pypy/changeset/3e98b6f5791a/ Log:Add test for asyncio checking a GIL initialization error on running "await asyncio.open_connection" diff --git a/pypy/modu

[pypy-commit] pypy py3.5-async: remove setup_class in test_asyncio, make better use of test_gil_issue

2016-08-08 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86085:9faaeb88a806 Date: 2016-08-08 19:02 +0200 http://bitbucket.org/pypy/pypy/changeset/9faaeb88a806/ Log:remove setup_class in test_asyncio, make better use of test_gil_issue diff --git a/pypy/module/_asyncio/test/test_asyncio.

[pypy-commit] pypy py3.5-async: Merge with py3.5-async-translate

2016-08-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86117:b7ea325def94 Date: 2016-08-09 17:53 +0200 http://bitbucket.org/pypy/pypy/changeset/b7ea325def94/ Log:Merge with py3.5-async-translate diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py -

[pypy-commit] pypy py3.5-async: Fix test_ast to check for correct 'arguments'-fields in test_fields

2016-08-10 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86130:fffb365644a3 Date: 2016-08-10 16:10 +0200 http://bitbucket.org/pypy/pypy/changeset/fffb365644a3/ Log:Fix test_ast to check for correct 'arguments'-fields in test_fields diff --git a/pypy/interpreter/astcompiler/test/test_ast.py b/

[pypy-commit] pypy py3.5-async: Fix and rename test_crap_after_starargs (allowed in PEP 448), dirty fix in function calls if argument order is reversed (happens if stararg occurs after kwarg)

2016-08-11 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86156:ab59452c8103 Date: 2016-08-11 19:29 +0200 http://bitbucket.org/pypy/pypy/changeset/ab59452c8103/ Log:Fix and rename test_crap_after_starargs (allowed in PEP 448), dirty fix in function calls if argument order is reversed (ha

[pypy-commit] pypy py3.5-async: Fix compiler test (positional arguments can follow starred arguments)

2016-08-11 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86157:18060b1572d4 Date: 2016-08-11 19:42 +0200 http://bitbucket.org/pypy/pypy/changeset/18060b1572d4/ Log:Fix compiler test (positional arguments can follow starred arguments) diff --git a/pypy/interpreter/astcompiler/test/test_

[pypy-commit] pypy py3.5: Merge with py3.5-async

2016-08-11 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86159:83d383a3859c Date: 2016-08-11 20:31 +0200 http://bitbucket.org/pypy/pypy/changeset/83d383a3859c/ Log:Merge with py3.5-async diff too long, truncating to 2000 out of 40779 lines diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags

[pypy-commit] pypy py3.5: Fix validate tests, ast classes "arguments", "classdef" and "call" don't have stararg and kwarg anymore

2016-08-11 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86161:14df96842b97 Date: 2016-08-11 21:54 +0200 http://bitbucket.org/pypy/pypy/changeset/14df96842b97/ Log:Fix validate tests, ast classes "arguments", "classdef" and "call" don't have stararg and kwarg anymore diff --git a/pypy/interp

[pypy-commit] pypy py3.5: Fix BUILD_SET_UNPACK by changing iterator to iter instead of itervalues as w_item should never be a dict anyway

2016-08-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86173:f658ed1189a5 Date: 2016-08-12 17:57 +0200 http://bitbucket.org/pypy/pypy/changeset/f658ed1189a5/ Log:Fix BUILD_SET_UNPACK by changing iterator to iter instead of itervalues as w_item should never be a dict anyway diff --git a/pyp

[pypy-commit] pypy py3.5: Change python environment in conftest to python3.5

2016-08-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86184:6d502390ba4f Date: 2016-08-13 19:54 +0200 http://bitbucket.org/pypy/pypy/changeset/6d502390ba4f/ Log:Change python environment in conftest to python3.5 diff --git a/pypy/conftest.py b/pypy/conftest.py --- a/pypy/conftest.py +++ b/pypy/co

[pypy-commit] pypy py3.5: Undo change of conftest (load python3 again), needs more fixes later

2016-08-14 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86187:d564da75d49d Date: 2016-08-14 16:16 +0200 http://bitbucket.org/pypy/pypy/changeset/d564da75d49d/ Log:Undo change of conftest (load python3 again), needs more fixes later diff --git a/pypy/conftest.py b/pypy/conftest.py --- a/pypy/conftes

[pypy-commit] pypy py3.5: Merge with py3k

2016-08-15 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86196:360908aa059a Date: 2016-08-15 12:16 +0200 http://bitbucket.org/pypy/pypy/changeset/360908aa059a/ Log:Merge with py3k diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpreter/baseobjspace.py

[pypy-commit] pypy py3.5: Add asyncio test for asynchronous context managers

2016-08-15 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86205:90eef5573de8 Date: 2016-08-15 22:11 +0200 http://bitbucket.org/pypy/pypy/changeset/90eef5573de8/ Log:Add asyncio test for asynchronous context managers diff --git a/pypy/module/_asyncio/test/test_asyncio.py b/pypy/module/_asyncio/test/t

[pypy-commit] pypy py3.5-async: Merge with py3.5

2016-08-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86213:a955efeebd40 Date: 2016-08-16 11:14 +0200 http://bitbucket.org/pypy/pypy/changeset/a955efeebd40/ Log:Merge with py3.5 diff too long, truncating to 2000 out of 4303 lines diff --git a/include/PyPy.h b/include/PyPy.h --- a/include/P

[pypy-commit] pypy py3.5-async: Fix async with test, fixes timing for messages expected in assert

2016-08-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86214:ce0987e21403 Date: 2016-08-16 11:20 +0200 http://bitbucket.org/pypy/pypy/changeset/ce0987e21403/ Log:Fix async with test, fixes timing for messages expected in assert diff --git a/pypy/module/_asyncio/test/test_asyncio.py b/pypy/m

[pypy-commit] pypy py3.5-async: Fix async with test, coroutines can assign lock in any order, but release of one lock has to appear before hold of the other lock

2016-08-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86222:034dc2c2ce1c Date: 2016-08-16 16:18 +0200 http://bitbucket.org/pypy/pypy/changeset/034dc2c2ce1c/ Log:Fix async with test, coroutines can assign lock in any order, but release of one lock has to appear before hold of the othe

[pypy-commit] pypy py3.5-async: Add description to test_asynchronous_context_managers

2016-08-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86223:bd2d21b70e51 Date: 2016-08-16 16:22 +0200 http://bitbucket.org/pypy/pypy/changeset/bd2d21b70e51/ Log:Add description to test_asynchronous_context_managers diff --git a/pypy/module/_asyncio/test/test_asyncio.py b/pypy/module/_async

[pypy-commit] pypy py3.5-async: Add StopAsyncIteration exception, expand test to check 'async for' in test_asyncio

2016-08-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86243:7d96e4bc57bb Date: 2016-08-17 13:04 +0200 http://bitbucket.org/pypy/pypy/changeset/7d96e4bc57bb/ Log:Add StopAsyncIteration exception, expand test to check 'async for' in test_asyncio diff --git a/pypy/interpreter/astcompil

[pypy-commit] pypy py3.5-async: Add lookup for __anext__ in next() and __anext__ to typedef of coroutines, add better (offline) async_for test, remove old async_for test and change it back to test onl

2016-08-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86250:d819f16ccf3f Date: 2016-08-17 17:25 +0200 http://bitbucket.org/pypy/pypy/changeset/d819f16ccf3f/ Log:Add lookup for __anext__ in next() and __anext__ to typedef of coroutines, add better (offline) async_for test, remove old

[pypy-commit] pypy py3.5-async: Add TODO for __anext__ in coroutine wrapper

2016-08-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86256:0797bd9ecb43 Date: 2016-08-17 19:04 +0200 http://bitbucket.org/pypy/pypy/changeset/0797bd9ecb43/ Log:Add TODO for __anext__ in coroutine wrapper diff --git a/pypy/interpreter/typedef.py b/pypy/interpreter/typedef.py --- a/pypy/inte

[pypy-commit] pypy py3.5-async: Change __next__ to __anext__ in coroutine

2016-08-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86255:bc47d0d39227 Date: 2016-08-17 19:01 +0200 http://bitbucket.org/pypy/pypy/changeset/bc47d0d39227/ Log:Change __next__ to __anext__ in coroutine diff --git a/pypy/interpreter/typedef.py b/pypy/interpreter/typedef.py --- a/pypy/interp

[pypy-commit] pypy py3.5-async: Minor change in TODO for __anext__

2016-08-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86257:2ec473a26e63 Date: 2016-08-17 19:06 +0200 http://bitbucket.org/pypy/pypy/changeset/2ec473a26e63/ Log:Minor change in TODO for __anext__ diff --git a/pypy/interpreter/typedef.py b/pypy/interpreter/typedef.py --- a/pypy/interpreter/t

[pypy-commit] pypy py3.5-async: Change POP_TOP to DUP_TOP in async_for, should fix TypeError after execution of 'async for'

2016-08-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86270:331fd07f62f8 Date: 2016-08-18 12:01 +0200 http://bitbucket.org/pypy/pypy/changeset/331fd07f62f8/ Log:Change POP_TOP to DUP_TOP in async_for, should fix TypeError after execution of 'async for' diff --git a/pypy/interpreter/

[pypy-commit] pypy py3.5-async: Change stack effect of POP_EXCEPT from -1 to -2, to compensate the depth in 'async for', because all except-finally depths are different in cpython. shorten the 'async

2016-08-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86273:e51e6872dbf1 Date: 2016-08-18 15:54 +0200 http://bitbucket.org/pypy/pypy/changeset/e51e6872dbf1/ Log:Change stack effect of POP_EXCEPT from -1 to -2, to compensate the depth in 'async for', because all except-finally depths

[pypy-commit] pypy py3.5-async: Check for correct values in 'async for' test

2016-08-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86287:5f146fc69289 Date: 2016-08-18 20:17 +0200 http://bitbucket.org/pypy/pypy/changeset/5f146fc69289/ Log:Check for correct values in 'async for' test diff --git a/pypy/module/_asyncio/test/test_asyncio.py b/pypy/module/_asyncio/test/t

[pypy-commit] pypy py3.5: Merge with py3.5-async

2016-08-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86288:10f2791aaf2d Date: 2016-08-18 20:22 +0200 http://bitbucket.org/pypy/pypy/changeset/10f2791aaf2d/ Log:Merge with py3.5-async diff --git a/pypy/interpreter/astcompiler/assemble.py b/pypy/interpreter/astcompiler/assemble.py --- a/pypy/inte

[pypy-commit] pypy py3.5: Change POP_EXCEPT back to -1

2016-08-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86289:6cf3401c7f36 Date: 2016-08-18 20:44 +0200 http://bitbucket.org/pypy/pypy/changeset/6cf3401c7f36/ Log:Change POP_EXCEPT back to -1 diff --git a/pypy/interpreter/astcompiler/assemble.py b/pypy/interpreter/astcompiler/assemble.py --- a/pyp

[pypy-commit] pypy py3.5: Change const.value to const.obj in test_obj because Const in AST changed attribute name

2016-08-19 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86323:147982173b0f Date: 2016-08-19 19:08 +0200 http://bitbucket.org/pypy/pypy/changeset/147982173b0f/ Log:Change const.value to const.obj in test_obj because Const in AST changed attribute name diff --git a/pypy/module/_ast/test/test_

[pypy-commit] pypy py3.5: Change error message on unpack and extended unpack if there are more values expected than available

2016-08-23 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86443:0a1d00e6444f Date: 2016-08-23 13:36 +0200 http://bitbucket.org/pypy/pypy/changeset/0a1d00e6444f/ Log:Change error message on unpack and extended unpack if there are more values expected than available diff --git a/pypy/interprete

[pypy-commit] pypy py3.5: Fix unpack_map bug saying X is not a mapping if another element is unpacked before (reset is_unpacking to False if element doesn't have to be unpacked)

2016-08-23 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86445:c505dc6d5e8d Date: 2016-08-23 15:13 +0200 http://bitbucket.org/pypy/pypy/changeset/c505dc6d5e8d/ Log:Fix unpack_map bug saying X is not a mapping if another element is unpacked before (reset is_unpacking to False if element doesn'

[pypy-commit] pypy py3.5: Describe key-value reverse order bug for dicts

2016-08-23 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86452:36436e3e01af Date: 2016-08-23 17:42 +0200 http://bitbucket.org/pypy/pypy/changeset/36436e3e01af/ Log:Describe key-value reverse order bug for dicts diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/code

[pypy-commit] pypy py3.5: Merge py3.5-raffael_t into py3.5

2016-05-04 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84197:3007d740c2c9 Date: 2016-05-04 21:11 +0200 http://bitbucket.org/pypy/pypy/changeset/3007d740c2c9/ Log:Merge py3.5-raffael_t into py3.5 diff --git a/lib-python/3/opcode.py b/lib-python/3/opcode.py --- a/lib-python/3/opcode.py +++ b/lib

[pypy-commit] pypy py3.5: Startup fix, insert missing py3 opcodes

2016-05-05 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84228:63776da5edf3 Date: 2016-05-05 20:36 +0200 http://bitbucket.org/pypy/pypy/changeset/63776da5edf3/ Log:Startup fix, insert missing py3 opcodes diff --git a/lib-python/3/opcode.py b/lib-python/3/opcode.py --- a/lib-python/3/opcode.py +++ b/

[pypy-commit] pypy py3.5: Add astbuilder test for matmul

2016-05-06 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84263:4b92de1eb94a Date: 2016-05-06 15:06 +0200 http://bitbucket.org/pypy/pypy/changeset/4b92de1eb94a/ Log:Add astbuilder test for matmul diff --git a/pypy/interpreter/astcompiler/test/test_astbuilder.py b/pypy/interpreter/astcompiler/test/te

[pypy-commit] pypy py3.5: Add astbuilder test @=, remove mistake in pyopcode

2016-05-06 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84269:07d590485a65 Date: 2016-05-06 17:13 +0200 http://bitbucket.org/pypy/pypy/changeset/07d590485a65/ Log:Add astbuilder test @=, remove mistake in pyopcode diff --git a/pypy/interpreter/astcompiler/test/test_astbuilder.py b/pypy/interpreter

[pypy-commit] pypy py3.5: Add inplace matmul in opcode assignment and operator module

2016-05-19 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84520:b8deb0af7c9d Date: 2016-05-19 13:40 +0200 http://bitbucket.org/pypy/pypy/changeset/b8deb0af7c9d/ Log:Add inplace matmul in opcode assignment and operator module diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py ---

[pypy-commit] pypy py3.5: Reorder matmul in baseobjspace

2016-05-20 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84542:2128a2ddbaaf Date: 2016-05-20 21:55 +0200 http://bitbucket.org/pypy/pypy/changeset/2128a2ddbaaf/ Log:Reorder matmul in baseobjspace diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpreter/b

[pypy-commit] pypy py3k: Apply gendfa patch from fix-gen-dfa (rev 84575) of Richard Plangger to py3k

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3k Changeset: r84576:a4fedb1664ee Date: 2016-05-22 19:54 +0200 http://bitbucket.org/pypy/pypy/changeset/a4fedb1664ee/ Log:Apply gendfa patch from fix-gen-dfa (rev 84575) of Richard Plangger to py3k diff --git a/pypy/interpreter/pyparser/gendfa.py b/p

[pypy-commit] pypy py3k: Merge

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3k Changeset: r84585:69f43473014e Date: 2016-05-22 20:57 +0200 http://bitbucket.org/pypy/pypy/changeset/69f43473014e/ Log:Merge diff --git a/pypy/interpreter/pyparser/gendfa.py b/pypy/interpreter/pyparser/gendfa.py --- a/pypy/interpreter/pyparser/gendfa.py +

[pypy-commit] pypy py3k: Fix whitespaces printed in gendfa

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3k Changeset: r84584:d6417229021c Date: 2016-05-22 20:54 +0200 http://bitbucket.org/pypy/pypy/changeset/d6417229021c/ Log:Fix whitespaces printed in gendfa diff --git a/pypy/interpreter/pyparser/gendfa.py b/pypy/interpreter/pyparser/gendfa.py --- a/pypy/inte

[pypy-commit] pypy fix-gen-dfa: Fix whitespaces printed in genpytokenize

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: fix-gen-dfa Changeset: r84586:7fa2b28336bf Date: 2016-05-22 21:16 +0200 http://bitbucket.org/pypy/pypy/changeset/7fa2b28336bf/ Log:Fix whitespaces printed in genpytokenize diff --git a/pypy/interpreter/pyparser/genpytokenize.py b/pypy/interpreter/pyparser/genp

[pypy-commit] pypy py3k: Fix test_gendfa with correct whitespaces

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3k Changeset: r84593:3dd3cbeb6e54 Date: 2016-05-22 22:07 +0200 http://bitbucket.org/pypy/pypy/changeset/3dd3cbeb6e54/ Log:Fix test_gendfa with correct whitespaces diff --git a/pypy/interpreter/pyparser/test/test_gendfa.py b/pypy/interpreter/pyparser/test/tes

[pypy-commit] pypy fix-gen-dfa: Fix test_gendfa with correct whitespaces

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: fix-gen-dfa Changeset: r84595:9ff8e76bcec8 Date: 2016-05-22 22:10 +0200 http://bitbucket.org/pypy/pypy/changeset/9ff8e76bcec8/ Log:Fix test_gendfa with correct whitespaces diff --git a/pypy/interpreter/pyparser/test/test_gendfa.py b/pypy/interpreter/pyparser/t

[pypy-commit] pypy py3.5: Add fixed gendfa from py3k to py3.5

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84596:342b00f71058 Date: 2016-05-22 22:16 +0200 http://bitbucket.org/pypy/pypy/changeset/342b00f71058/ Log:Add fixed gendfa from py3k to py3.5 diff --git a/dfa_generated.py b/dfa_generated.py new file mode 100644 diff --git a/pypy/interpreter/

[pypy-commit] pypy py3.5: Add gendfa test

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84597:ac30234331fd Date: 2016-05-22 22:17 +0200 http://bitbucket.org/pypy/pypy/changeset/ac30234331fd/ Log:Add gendfa test diff --git a/dfa_generated.py b/dfa_generated.py deleted file mode 100644 diff --git a/pypy/interpreter/pyparser/test/te

[pypy-commit] pypy py3.5: Fix @= not recognized by adding @ to dfa

2016-05-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84598:8d4fbbad6a2c Date: 2016-05-22 22:21 +0200 http://bitbucket.org/pypy/pypy/changeset/8d4fbbad6a2c/ Log:Fix @= not recognized by adding @ to dfa diff --git a/pypy/interpreter/pyparser/dfa_generated.py b/pypy/interpreter/pyparser/dfa_genera

[pypy-commit] pypy py3.5: Allow unpack for keyword args in dict or set in Grammar

2016-05-23 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84630:e5e789aeea5b Date: 2016-05-23 19:03 +0200 http://bitbucket.org/pypy/pypy/changeset/e5e789aeea5b/ Log:Allow unpack for keyword args in dict or set in Grammar diff --git a/pypy/interpreter/pyparser/data/Grammar3.5 b/pypy/interpreter/pypar

[pypy-commit] pypy py3.5: Mark important locations for unpacking with TODOs

2016-05-24 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84659:341c112b204d Date: 2016-05-24 17:46 +0200 http://bitbucket.org/pypy/pypy/changeset/341c112b204d/ Log:Mark important locations for unpacking with TODOs diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompile

[pypy-commit] pypy py3.5: Add ast test for unpack in set, add TODO, define STAR as first token as Set

2016-05-24 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84667:3d80438bd661 Date: 2016-05-24 21:54 +0200 http://bitbucket.org/pypy/pypy/changeset/3d80438bd661/ Log:Add ast test for unpack in set, add TODO, define STAR as first token as Set diff --git a/pypy/interpreter/astcompiler/astbuilder

[pypy-commit] pypy py3.5: Remove unneccessary TODO

2016-05-24 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84669:612837849272 Date: 2016-05-24 23:19 +0200 http://bitbucket.org/pypy/pypy/changeset/612837849272/ Log:Remove unneccessary TODO diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/astbuilder.py --- a/pyp

[pypy-commit] pypy py3.5: Bypass error in visit_starred, use python 3.5 asdl

2016-05-27 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84738:5090279ba5d4 Date: 2016-05-27 22:01 +0200 http://bitbucket.org/pypy/pypy/changeset/5090279ba5d4/ Log:Bypass error in visit_starred, use python 3.5 asdl diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompil

[pypy-commit] pypy py3.5: Mark places needed for build_set_unpack

2016-05-28 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84797:f8b7c37f9a15 Date: 2016-05-28 21:39 +0200 http://bitbucket.org/pypy/pypy/changeset/f8b7c37f9a15/ Log:Mark places needed for build_set_unpack diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py

[pypy-commit] pypy py3.5: Start defining BUILD_SET_UNPACK as in cpython, undo temporary error bypass in visit_Starred, change error message if starred expression not used as store to match cpython 3.5

2016-05-29 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84823:6192dedbd81c Date: 2016-05-29 22:06 +0200 http://bitbucket.org/pypy/pypy/changeset/6192dedbd81c/ Log:Start defining BUILD_SET_UNPACK as in cpython, undo temporary error bypass in visit_Starred, change error message if starred expr

[pypy-commit] pypy py3.5: Fix asdl

2016-05-31 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84844:28b71049383d Date: 2016-05-31 20:00 +0200 http://bitbucket.org/pypy/pypy/changeset/28b71049383d/ Log:Fix asdl diff --git a/pypy/interpreter/astcompiler/tools/Python.asdl b/pypy/interpreter/astcompiler/tools/Python.asdl --- a/pypy/interp

[pypy-commit] pypy py3.5: Rewrite codegen to accept many unpacks and add ops for tuples (unfinished)

2016-05-31 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84848:0e8928645975 Date: 2016-05-31 22:49 +0200 http://bitbucket.org/pypy/pypy/changeset/0e8928645975/ Log:Rewrite codegen to accept many unpacks and add ops for tuples (unfinished) diff --git a/pypy/interpreter/astcompiler/codegen.py

[pypy-commit] pypy py3.5: Finish handling positional and keyword args on function call

2016-06-01 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84872:ae9d71da76a0 Date: 2016-06-01 22:20 +0200 http://bitbucket.org/pypy/pypy/changeset/ae9d71da76a0/ Log:Finish handling positional and keyword args on function call diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/as

[pypy-commit] pypy py3.5: Create other ops

2016-06-02 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84886:2e6c87aa86c2 Date: 2016-06-02 23:19 +0200 http://bitbucket.org/pypy/pypy/changeset/2e6c87aa86c2/ Log:Create other ops diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/pyopcode.py +++ b/pypy/

[pypy-commit] pypy py3.5: Implement pyopcode BUILD_SET_UNPACK

2016-06-03 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84912:282bcd4967a7 Date: 2016-06-03 21:02 +0200 http://bitbucket.org/pypy/pypy/changeset/282bcd4967a7/ Log:Implement pyopcode BUILD_SET_UNPACK diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/pyop

[pypy-commit] pypy py3.5: Change kind to func in codegen _make_call

2016-06-03 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84915:dcb2c9c112db Date: 2016-06-03 23:03 +0200 http://bitbucket.org/pypy/pypy/changeset/dcb2c9c112db/ Log:Change kind to func in codegen _make_call diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.p

[pypy-commit] pypy py3.5: Define missing _compute methods in assemble, fix bug of last commit in codegen

2016-06-04 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84918:ffef1437c3dc Date: 2016-06-04 17:57 +0200 http://bitbucket.org/pypy/pypy/changeset/ffef1437c3dc/ Log:Define missing _compute methods in assemble, fix bug of last commit in codegen diff --git a/pypy/interpreter/astcompiler/assembl

[pypy-commit] pypy py3.5: Create unfinished _visit_starunpack, fix wrong methods bugs, fix None not iterable bug (still has bugs)

2016-06-04 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84930:6fe1da3c798a Date: 2016-06-04 23:32 +0200 http://bitbucket.org/pypy/pypy/changeset/6fe1da3c798a/ Log:Create unfinished _visit_starunpack, fix wrong methods bugs, fix None not iterable bug (still has bugs) diff --git a/pypy/interp

[pypy-commit] pypy py3.5: Update BUILD_ methods

2016-06-05 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84956:f02e8c9c821f Date: 2016-06-05 23:49 +0200 http://bitbucket.org/pypy/pypy/changeset/f02e8c9c821f/ Log:Update BUILD_ methods diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/pyopcode.py +++ b/

[pypy-commit] pypy py3.5: fix keyword not iterable bug, call walkabout methods instead of visit_sequence, emit ops on call

2016-06-06 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84969:3cebb79b83a9 Date: 2016-06-06 18:08 +0200 http://bitbucket.org/pypy/pypy/changeset/3cebb79b83a9/ Log:fix keyword not iterable bug, call walkabout methods instead of visit_sequence, emit ops on call diff --git a/pypy/interpreter/a

[pypy-commit] pypy py3.5: prepare vars for build_map_unpack_with_call

2016-06-06 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r84984:86822511a36a Date: 2016-06-07 00:22 +0200 http://bitbucket.org/pypy/pypy/changeset/86822511a36a/ Log:prepare vars for build_map_unpack_with_call diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpre

[pypy-commit] pypy py3.5: Remove starargs and kwargs in handle_classdef

2016-06-07 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85010:facd0617efcb Date: 2016-06-07 21:34 +0200 http://bitbucket.org/pypy/pypy/changeset/facd0617efcb/ Log:Remove starargs and kwargs in handle_classdef diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/as

[pypy-commit] pypy py3.5: Remove 2 parameters for Call (requires working ast)

2016-06-07 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85011:1c03b34c7f8c Date: 2016-06-07 21:51 +0200 http://bitbucket.org/pypy/pypy/changeset/1c03b34c7f8c/ Log:Remove 2 parameters for Call (requires working ast) diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompi

[pypy-commit] pypy py3.5: Use full Unpack Grammar, one more call argument fix

2016-06-08 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85045:b7332e2d0f64 Date: 2016-06-08 23:25 +0200 http://bitbucket.org/pypy/pypy/changeset/b7332e2d0f64/ Log:Use full Unpack Grammar, one more call argument fix diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompi

[pypy-commit] pypy py3.5: Remove starargs and kwargs from symtable

2016-06-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85056:c6360ae83f41 Date: 2016-06-09 17:31 +0200 http://bitbucket.org/pypy/pypy/changeset/c6360ae83f41/ Log:Remove starargs and kwargs from symtable diff --git a/pypy/interpreter/astcompiler/symtable.py b/pypy/interpreter/astcompiler/symtable.

[pypy-commit] pypy py3.5: Fix asdl_py.py to work with new asdl.py, compile new ast.py

2016-06-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85058:f7c942bfac43 Date: 2016-06-09 18:52 +0200 http://bitbucket.org/pypy/pypy/changeset/f7c942bfac43/ Log:Fix asdl_py.py to work with new asdl.py, compile new ast.py diff --git a/pypy/interpreter/astcompiler/ast.py b/pypy/interpreter/astcomp

[pypy-commit] pypy py3.5: Fix formatting error because of new asdl.py

2016-06-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85059:af060ac191a1 Date: 2016-06-09 19:22 +0200 http://bitbucket.org/pypy/pypy/changeset/af060ac191a1/ Log:Fix formatting error because of new asdl.py diff --git a/pypy/interpreter/astcompiler/ast.py b/pypy/interpreter/astcompiler/ast.py ---

[pypy-commit] pypy py3.5: Fix Matmul from python3.5 diff (matmul -> matmult)

2016-06-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85060:afe63cdf3335 Date: 2016-06-09 19:26 +0200 http://bitbucket.org/pypy/pypy/changeset/afe63cdf3335/ Log:Fix Matmul from python3.5 diff (matmul -> matmult) diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompil

[pypy-commit] pypy py3.5: Delete deprecated arguments and reorder returned arguments in handle_arguments

2016-06-09 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85062:61e3f61af25a Date: 2016-06-09 20:55 +0200 http://bitbucket.org/pypy/pypy/changeset/61e3f61af25a/ Log:Delete deprecated arguments and reorder returned arguments in handle_arguments diff --git a/pypy/interpreter/astcompiler/astbuil

[pypy-commit] pypy py3.5: New AST handling in handle_call (not done, backup)

2016-06-10 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85083:f4991e923ef5 Date: 2016-06-10 22:17 +0200 http://bitbucket.org/pypy/pypy/changeset/f4991e923ef5/ Log:New AST handling in handle_call (not done, backup) diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompil

[pypy-commit] pypy py3.5: Handle call on iterable argument unpacking

2016-06-11 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85103:e67603023b8b Date: 2016-06-12 00:02 +0200 http://bitbucket.org/pypy/pypy/changeset/e67603023b8b/ Log:Handle call on iterable argument unpacking diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/astbu

[pypy-commit] pypy py3.5: Handle keyword unpacking in call

2016-06-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85112:3dc8310f4934 Date: 2016-06-12 20:20 +0200 http://bitbucket.org/pypy/pypy/changeset/3dc8310f4934/ Log:Handle keyword unpacking in call diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/astbuilder.py -

[pypy-commit] pypy py3.5: Remove unneeded variable and old STAR and DOUBLESTAR handling in call

2016-06-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85113:cbb2f3f23443 Date: 2016-06-12 20:29 +0200 http://bitbucket.org/pypy/pypy/changeset/cbb2f3f23443/ Log:Remove unneeded variable and old STAR and DOUBLESTAR handling in call diff --git a/pypy/interpreter/astcompiler/astbuilder.py b

[pypy-commit] pypy py3.5: Missing increment for doublestars counter and wrong naming

2016-06-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85114:6c4ca5852ddd Date: 2016-06-12 20:36 +0200 http://bitbucket.org/pypy/pypy/changeset/6c4ca5852ddd/ Log:Missing increment for doublestars counter and wrong naming diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/a

[pypy-commit] pypy py3.5: Remove state.ast_type double quotes to get old format back

2016-06-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85143:6ed651b758f8 Date: 2016-06-13 21:05 +0200 http://bitbucket.org/pypy/pypy/changeset/6ed651b758f8/ Log:Remove state.ast_type double quotes to get old format back diff --git a/pypy/interpreter/astcompiler/ast.py b/pypy/interpreter/astcompi

[pypy-commit] pypy py3.5: Better way to fix the double quotes

2016-06-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85144:caaa5d28bdd6 Date: 2016-06-13 21:21 +0200 http://bitbucket.org/pypy/pypy/changeset/caaa5d28bdd6/ Log:Better way to fix the double quotes diff --git a/pypy/interpreter/astcompiler/tools/asdl_py.py b/pypy/interpreter/astcompiler/tools/asd

[pypy-commit] pypy py3.5: Return an arg (instead of identifier value) in handle arguments for STAR and DOUBLESTAR

2016-06-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85146:4ed7839a6bd6 Date: 2016-06-13 21:51 +0200 http://bitbucket.org/pypy/pypy/changeset/4ed7839a6bd6/ Log:Return an arg (instead of identifier value) in handle arguments for STAR and DOUBLESTAR diff --git a/pypy/interpreter/astcompile

[pypy-commit] pypy py3.5: Remove vararg- and kwargannotation checks in visit_annotation for symtable

2016-06-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85147:8cd46370914c Date: 2016-06-13 22:05 +0200 http://bitbucket.org/pypy/pypy/changeset/8cd46370914c/ Log:Remove vararg- and kwargannotation checks in visit_annotation for symtable diff --git a/pypy/interpreter/astcompiler/symtable.py

[pypy-commit] pypy py3.5: Fix errors of identifier->arg change, remove more obsolete annotation checks

2016-06-13 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85148:7297e4bad09b Date: 2016-06-13 22:34 +0200 http://bitbucket.org/pypy/pypy/changeset/7297e4bad09b/ Log:Fix errors of identifier->arg change, remove more obsolete annotation checks diff --git a/pypy/interpreter/astcompiler/codegen.p

[pypy-commit] pypy py3.5: Fix _call_has_no_star_args as starargs and kwargs are not existent anymore

2016-06-15 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85181:49e5e8c90e82 Date: 2016-06-15 20:01 +0200 http://bitbucket.org/pypy/pypy/changeset/49e5e8c90e82/ Log:Fix _call_has_no_star_args as starargs and kwargs are not existent anymore diff --git a/pypy/interpreter/astcompiler/codegen.py

[pypy-commit] pypy py3.5: Fix visit_list

2016-06-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85200:8d7c7f8d2ee3 Date: 2016-06-16 22:38 +0200 http://bitbucket.org/pypy/pypy/changeset/8d7c7f8d2ee3/ Log:Fix visit_list diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --- a/pypy/interpreter/as

[pypy-commit] pypy py3.5: Fix visit_tuple

2016-06-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85201:d3a8be3eee83 Date: 2016-06-16 22:42 +0200 http://bitbucket.org/pypy/pypy/changeset/d3a8be3eee83/ Log:Fix visit_tuple diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --- a/pypy/interpreter/a

[pypy-commit] pypy py3.5: Adapt _visit_list_or_tuple_assignment

2016-06-16 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85202:430c5404f5b9 Date: 2016-06-16 23:38 +0200 http://bitbucket.org/pypy/pypy/changeset/430c5404f5b9/ Log:Adapt _visit_list_or_tuple_assignment diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --

[pypy-commit] pypy py3.5: Fix wrong names, change parameters in assisting methods in visit_List and visit_Tuple

2016-06-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85215:d54ef7518fde Date: 2016-06-17 18:48 +0200 http://bitbucket.org/pypy/pypy/changeset/d54ef7518fde/ Log:Fix wrong names, change parameters in assisting methods in visit_List and visit_Tuple diff --git a/pypy/interpreter/astcompiler/

[pypy-commit] pypy py3.5: Write starunpack and assignment assist methods for tuple and list

2016-06-17 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85216:bad2cce14a59 Date: 2016-06-17 20:05 +0200 http://bitbucket.org/pypy/pypy/changeset/bad2cce14a59/ Log:Write starunpack and assignment assist methods for tuple and list diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpret

[pypy-commit] pypy py3.5: Call _visit_starunpack in set

2016-06-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85225:6e3952e1c5d7 Date: 2016-06-18 18:40 +0200 http://bitbucket.org/pypy/pypy/changeset/6e3952e1c5d7/ Log:Call _visit_starunpack in set diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --- a/pypy

[pypy-commit] pypy py3.5: Fix dict codegen

2016-06-18 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85227:58c84b553a11 Date: 2016-06-18 22:25 +0200 http://bitbucket.org/pypy/pypy/changeset/58c84b553a11/ Log:Fix dict codegen diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --- a/pypy/interpreter/

[pypy-commit] pypy py3.5: (insert note for bug with depth is 1)

2016-06-19 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85230:74e75cb5c5eb Date: 2016-06-19 21:59 +0200 http://bitbucket.org/pypy/pypy/changeset/74e75cb5c5eb/ Log:(insert note for bug with depth is 1) diff --git a/pypy/interpreter/astcompiler/assemble.py b/pypy/interpreter/astcompiler/assemble.py

[pypy-commit] pypy py3.5: Fix bug if keyword.arg is None on keyword argument unpack, insert new pyopcodes in dispatch method

2016-06-20 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85248:e451b4b82bb1 Date: 2016-06-20 18:21 +0200 http://bitbucket.org/pypy/pypy/changeset/e451b4b82bb1/ Log:Fix bug if keyword.arg is None on keyword argument unpack, insert new pyopcodes in dispatch method diff --git a/pypy/interpreter

[pypy-commit] pypy py3.5: set correct types for unpack pyopcodes

2016-06-20 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85252:9a39ae0f6424 Date: 2016-06-20 19:22 +0200 http://bitbucket.org/pypy/pypy/changeset/9a39ae0f6424/ Log:set correct types for unpack pyopcodes diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/p

[pypy-commit] pypy py3.5: call non unpack methods temporarily

2016-06-20 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85263:ef3eebed1864 Date: 2016-06-20 23:10 +0200 http://bitbucket.org/pypy/pypy/changeset/ef3eebed1864/ Log:call non unpack methods temporarily diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/pyop

[pypy-commit] pypy py3.5: change handling dicts in astbuilder

2016-06-21 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85319:bfeac9d99b15 Date: 2016-06-21 22:57 +0200 http://bitbucket.org/pypy/pypy/changeset/bfeac9d99b15/ Log:change handling dicts in astbuilder diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/astbuilder.p

[pypy-commit] pypy py3.5: Throw error if unpacking is used in comprehension

2016-06-22 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r85331:3c7f568374d8 Date: 2016-06-22 18:23 +0200 http://bitbucket.org/pypy/pypy/changeset/3c7f568374d8/ Log:Throw error if unpacking is used in comprehension diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompile

  1   2   3   >