Commit c8cd334a authored by Marius Wachtler's avatar Marius Wachtler

Merge branch 'refcounting' of github.com:dropbox/pyston into refcounting

parents 6e6178e6 3d761d86
# expected: reffail
d = {}
print d.get(1)
print d.setdefault(2)
......
# expected: reffail
# Test for various defaults arguments in builtin functions:
class ExpectationFailedException(Exception):
......
# expected: reffail
class C(object):
def __len__(self):
print "__len__"
......
# expected: reffail
print [(i, j) for i in range(4) for j in range(4)]
def f():
......
# expected: reffail
# -*- coding: utf-8 -*-
# The Computer Language Benchmarks Game
# http://shootout.alioth.debian.org/
......
# expected: reffail
import os, sys
def delete_file(name):
......
# expected: reffail
import sys
import os.path
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment