Re:Re: why the connection set with “keep live” in urllib.request always set to be“closed, thanks

2020-08-18 Thread xuanwu348
rovid, I will read into them. Best Regards At 2020-08-19 02:35:42, "Barry Scott" wrote: On 18 Aug 2020, at 02:16, xuanwu348 wrote: This means I want to structure my request header with "Connection: keep alive" for the server which support connect alive, B

Re:Re: why the connection set with “keep live” in urllib.request always set to be“closed, thanks

2020-08-17 Thread xuanwu348
写道: > > >> On 17 Aug 2020, at 18:23, xuanwu348 wrote: >> >> hi everyone >> >> >> Good day, the code as below, I try to make a long connection by set the >> connection to "keep-alive", but actually it's not as expected. Why? Thanks > &g

why the connection set with “keep live” in urllib.request always set to be“closed, thanks

2020-08-17 Thread xuanwu348
hi everyone Good day, the code as below, I try to make a long connection by set the connection to "keep-alive", but actually it's not as expected. Why? Thanks import urllib.request as req headers = {"authorization": "Bearer {}".format(self.token), "Content-Type": "multipart

about the function in class

2020-07-17 Thread xuanwu348
Hi, all There are some methods to define functions in a class, include member functions, static method, class method. My question is that which type of function for "decorate(f),diff_con(f)" I think these functions all were belong to member function, (f <-->self) f can be replace by sel

Re:syntax for ellipsis like as "net.blobs['data'].data[...] = transformed_image"

2019-10-26 Thread xuanwu348
object being there didn't require this, but the literal "..." support for slices did. 在 2019-10-26 22:51:31,"xuanwu348" 写道: Hi buddies Have a good weekend! I have read some code in caffe, but I confused at "net.blobs['data'].data[...] = transformed

syntax for ellipsis like as "net.blobs['data'].data[...] = transformed_image"

2019-10-26 Thread xuanwu348
Hi buddies Have a good weekend! I have read some code in caffe, but I confused at "net.blobs['data'].data[...] = transformed_image". The code can be find in this link:https://github.com/BVLC/caffe/blob/master/examples/00-classification.ipynb import caffe model_def = os.path.join(caffe_root, "mo

Re:Re: name 'aLOCK' is not defined When I add aLOCK = threading.RLock() behind if __name__ == "__main__"

2018-08-09 Thread xuanwu348
-and-namespaces between positionA and positionB, I think the variable "aLock" at these positionA or positionB are all global. The function can find threading.RLock() by name ""aLock". At 2018-08-09 23:51:45, "Karsten Hilbert" wrote: >On Thu, Aug 09

name 'aLOCK' is not defined When I add aLOCK = threading.RLock() behind if __name__ == "__main__"

2018-08-09 Thread xuanwu348
Hi team Good day The problem I meet when I add "aLOCK = threading.RLock()" to PositionB, the program will report error "name 'aLOCK' is not defined ", but when I change this code to PositionA, it can run normally, is there any difference for the code between 'if __name__ == "__main__:"', can you

Re:Please Help

2018-01-27 Thread xuanwu348
np.uint8 is unsigned int, range 0~255 >>> np.uint8(256) 0 At 2018-01-27 12:33:22, "" wrote: >import numpy as np >x=np.unit8([250) >print(x) >y=np.unit8([10]) >print(y) >z=x+y >print(z) > > >output > >[250] >[10] >[4] > >My question how is z [4] >-- >https://mail.python.org/mailman/listin