Staging
v0.5.1
https://github.com/python/cpython
Revision 0a95063d732b6f309a0cbf73e6095fb8774e5914 authored by Eric Smith on 30 April 2008, 01:09:30 UTC, committed by Eric Smith on 30 April 2008, 01:09:30 UTC
Implemented grouping, with tests.
Cleaned up PyOS_ascii_formatd by breaking reformatting into smaller functions.
1 parent 48f6276
Raw File
Tip revision: 0a95063d732b6f309a0cbf73e6095fb8774e5914 authored by Eric Smith on 30 April 2008, 01:09:30 UTC
Issue 2526, float.__format__ 'n' specifier does not support thousands grouping.
Tip revision: 0a95063
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python30_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python30.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top