Исправлена константа pi в math.pys
This commit is contained in:
parent
8de8af7320
commit
9506d19493
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
|||
public const string Major = "3";
|
||||
public const string Minor = "11";
|
||||
public const string Build = "0";
|
||||
public const string Revision = "3714";
|
||||
public const string Revision = "3715";
|
||||
|
||||
public const string MainVersion = Major + "." + Minor;
|
||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%COREVERSION%=0
|
||||
%REVISION%=3714
|
||||
%MINOR%=11
|
||||
%REVISION%=3715
|
||||
%COREVERSION%=0
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.11.0.3714
|
||||
3.11.0.3715
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.11.0.3714'
|
||||
!define VERSION '3.11.0.3715'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import PABCSystem
|
||||
|
||||
pi: float = 3.14
|
||||
pi = 3.14159265358979
|
||||
|
||||
def sqrt(x: float) -> float:
|
||||
return PABCSystem.sqrt(x)
|
||||
|
|
|
|||
Loading…
Reference in a new issue