Skip to content
Snippets Groups Projects
Select Git revision
  • 044c473de203b4dbe93874813b430fb6336db2b2
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

objclosure.c

Blame
  • dict_fromkeys2.py 202 B
    try:
        reversed
    except:
        import sys
        print("SKIP")
        sys.exit()
    
    # argument to fromkeys has no __len__
    d = dict.fromkeys(reversed(range(1)))
    #d = dict.fromkeys((x for x in range(1)))
    print(d)