Staging
v0.5.1
https://github.com/python/cpython
Revision e95977621de92f99153d48d2c4dde9cbdff6e3a7 authored by Serhiy Storchaka on 19 February 2014, 16:34:05 UTC, committed by Serhiy Storchaka on 19 February 2014, 16:34:05 UTC
Tkinter widgets to work in wantobjects=True mode.
1 parent d5c8ce7
Raw File
Tip revision: e95977621de92f99153d48d2c4dde9cbdff6e3a7 authored by Serhiy Storchaka on 19 February 2014, 16:34:05 UTC
Fixed grid_columnconfigure() and grid_rowconfigure() methods of
Tip revision: e959776
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