Commit fea1b7a4 authored by lixiaofang's avatar lixiaofang

add

parent fd6e40fb
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="fd1f0b61-1139-44e5-87e7-f8b86ff52376" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/instant.py" beforeDir="false" afterPath="$PROJECT_DIR$/instant.py" afterDir="false" />
</list>
<list default="true" id="fd1f0b61-1139-44e5-87e7-f8b86ff52376" name="Default Changelist" comment="" />
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
......@@ -42,14 +40,14 @@
<entry key="comment" value="59" />
<entry key="dummy" value="6" />
<entry key="guanshui" value="2" />
<entry key="py" value="3285" />
<entry key="py" value="3352" />
<entry key="xuqiu" value="223" />
</counts>
</usages-collector>
<usages-collector id="statistics.file.types.edit">
<counts>
<entry key="PLAIN_TEXT" value="290" />
<entry key="Python" value="3285" />
<entry key="Python" value="3352" />
</counts>
</usages-collector>
</session>
......@@ -132,8 +130,8 @@
<file pinned="false" current-in-tab="true">
<entry file="file://$PROJECT_DIR$/instant.py">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="540">
<caret line="36" column="16" selection-start-line="36" selection-start-column="16" selection-end-line="36" selection-end-column="16" />
<state relative-caret-position="521">
<caret line="54" column="35" selection-start-line="54" selection-start-column="35" selection-end-line="54" selection-end-column="35" />
<folding>
<element signature="e#0#15#0" expanded="true" />
</folding>
......@@ -502,7 +500,6 @@
</component>
<component name="ToolWindowManager">
<frame x="-322" y="-1080" width="1920" height="1080" extended-state="6" />
<editor active="true" />
<layout>
<window_info id="Structure" order="0" sideWeight="0.21188119" side_tool="true" weight="0.19112115" />
<window_info id="Favorites" order="1" side_tool="true" />
......@@ -516,7 +513,7 @@
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
<window_info anchor="bottom" id="TODO" order="6" />
<window_info anchor="bottom" id="Version Control" order="7" show_stripe_button="false" />
<window_info active="true" anchor="bottom" id="Terminal" order="8" visible="true" weight="0.015544041" />
<window_info active="true" anchor="bottom" id="Terminal" order="8" visible="true" weight="0.34611398" />
<window_info anchor="bottom" id="Event Log" order="9" side_tool="true" />
<window_info anchor="bottom" id="Python Console" order="10" />
<window_info anchor="bottom" id="DB Execution Console" order="11" />
......@@ -935,8 +932,8 @@
</entry>
<entry file="file://$PROJECT_DIR$/instant.py">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="540">
<caret line="36" column="16" selection-start-line="36" selection-start-column="16" selection-end-line="36" selection-end-column="16" />
<state relative-caret-position="521">
<caret line="54" column="35" selection-start-line="54" selection-start-column="35" selection-end-line="54" selection-end-column="35" />
<folding>
<element signature="e#0#15#0" expanded="true" />
</folding>
......
......@@ -36,6 +36,7 @@ if __name__ == "__main__":
global timer
exec_count =1
if exec_count == 1:
print("---1-----")
# sleep_time = random.randint(300, 540)
sleep_time = 3
timer = threading.Timer(sleep_time, fun_timer)
......@@ -43,6 +44,7 @@ if __name__ == "__main__":
exec_count+=1
if exec_count == 2:
print("---2-----")
# sleep_time = random.randint(1000, 1900)
sleep_time = 10
......@@ -51,6 +53,8 @@ if __name__ == "__main__":
exec_count += 1
if exec_count == 3:
print("---3-----")
# sleep_time = random.randint(2000, 3000)
sleep_time = 15
timer = threading.Timer(sleep_time, fun_timer)
......
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