Staging
v0.5.1
https://github.com/python/cpython
Revision 665486e0e73f6e1cc0a54d1ac1e977b7cff7b085 authored by Victor Stinner on 21 January 2014, 00:41:00 UTC, committed by Victor Stinner on 21 January 2014, 00:41:00 UTC
instead of rounding towards zero. For example, a timeout of one microsecond is
now rounded to one millisecond, instead of being rounded to zero.
1 parent 9b7a1a1
Raw File
Tip revision: 665486e0e73f6e1cc0a54d1ac1e977b7cff7b085 authored by Victor Stinner on 21 January 2014, 00:41:00 UTC
Issue #20311: select.epoll.poll() now rounds the timeout away from zero,
Tip revision: 665486e
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python33_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python33.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top