]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / breakpoint / breakpoint_command / bktptcmd.py
1 from __future__ import print_function
2
3 def function(frame, bp_loc, dict):
4         there = open("output2.txt", "w");
5         print("lldb", file=there)
6         there.close()