Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-spd
Commits
e3ede6f1
Commit
e3ede6f1
authored
May 16, 2025
by
liguangyu06
Browse files
新增期初导入脚本
parent
f96aff14
Changes
1
Hide whitespace changes
Inline
Side-by-side
air_case/b2_herp3_bs/手工入库.air/手工入库.py
View file @
e3ede6f1
...
...
@@ -116,4 +116,14 @@ def l_pur():
print
(
result
)
l_pur
()
# 创建多线程
threads
=
[]
for
_
in
range
(
10
):
t
=
threading
.
Thread
(
target
=
l_pur
())
threads
.
append
(
t
)
t
.
start
()
# 等待所有线程完成
for
t
in
threads
:
t
.
join
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment