Skip to content

Commit 000fbda

Browse files
author
zhuliting
committed
updated
1 parent f885b32 commit 000fbda

File tree

5 files changed

+7
-18
lines changed

5 files changed

+7
-18
lines changed
-12 KB
Binary file not shown.
-12 KB
Binary file not shown.

cpp/design_pattern/state/.state.h.swp

-12 KB
Binary file not shown.

python/a.py

-17
This file was deleted.

test.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import urllib
77
import os
88
from BeautifulSoup import BeautifulSoup
9+
import time
10+
import sys
911

1012
def cbk(a, b, c):
1113
'''回调函数
@@ -34,4 +36,8 @@ def getAllImageLink():
3436
print filesavepath
3537

3638
if __name__ == '__main__':
37-
getAllImageLink()
39+
#getAllImageLink()
40+
for i in range(1,100):
41+
time.sleep(1)
42+
print '%.2d' % i,
43+
sys.stdout.flush()

0 commit comments

Comments
 (0)