我正在尝试将多进程与安全的SSL套接字一起使用。 我正在使用python 3。 在服务器上,代码如下所示:
<table id="t1" border="1">
<thead>
<tr> <th colspan="2">1</th><th colspan="3">22 </th></tr>
<tr> <th>1</th><th data-rotate>22</th><th data-rotate>333</th><th>4444</th><th>5555555</th></tr>
</thead>
<tr><td>aaaaaaa</td><td>bbbbbbbbb</td><td>cccccccccc</td><td>ddddd<br>ddddddd</td><td>dddddddddddd</td></tr>
</table>
<!-- <thead> on same line as <table> -->
<table id="t2" border="1" > <thead>
<tr> <th colspan="2">1</th><th colspan="3">22 </th></tr>
<tr> <th>1</th><th data-rotate>22</th><th data-rotate>333</th><th>4444</th><th>5555555</th></tr>
</thead>
<tr><td>aaaaaaa</td><td>bbbbbbbbb</td><td>cccccccccc</td><td>ddddd<br>ddddddd</td><td>dddddddddddd</td></tr>
</table>
我得到的错误是: OSError:[WinError 10038]尝试对非套接字的东西进行操作
我该怎么办?
谢谢你, 盾牌特工。