monty 0.0.20

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
import math

# === Constants ===
assert math.pi == 3.141592653589793
assert math.e == 2.718281828459045
assert math.tau == 6.283185307179586
assert math.inf == float('inf')
assert math.nan != math.nan
assert math.isinf(math.inf)
assert math.isnan(math.nan)

# === math.floor() ===
assert math.floor(2.3) == 2
assert math.floor(-2.3) == -3
assert math.floor(2.0) == 2
assert math.floor(5) == 5
assert math.floor(True) == 1
assert math.floor(False) == 0
assert math.floor(-0.5) == -1
assert math.floor(0.9) == 0
assert math.floor(1e18) == 1000000000000000000

threw = False
try:
    math.floor(float('inf'))
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.floor(float('nan'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.floor('x')
except TypeError:
    threw = True
assert threw

# === math.ceil() ===
assert math.ceil(2.3) == 3
assert math.ceil(-2.3) == -2
assert math.ceil(2.0) == 2
assert math.ceil(5) == 5
assert math.ceil(True) == 1
assert math.ceil(False) == 0
assert math.ceil(0.1) == 1
assert math.ceil(-0.1) == 0

threw = False
try:
    math.ceil(float('inf'))
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.ceil(float('nan'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.ceil('x')
except TypeError:
    threw = True
assert threw

# === math.trunc() ===
assert math.trunc(2.7) == 2
assert math.trunc(-2.7) == -2
assert math.trunc(2.0) == 2
assert math.trunc(5) == 5
assert math.trunc(True) == 1
assert math.trunc(False) == 0

threw = False
try:
    math.trunc(float('inf'))
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.trunc(float('nan'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.trunc('x')
except TypeError:
    threw = True
assert threw

# === math.sqrt() ===
assert math.sqrt(4) == 2.0
assert math.sqrt(2) == 1.4142135623730951
assert math.sqrt(0) == 0.0
assert math.sqrt(1) == 1.0
assert math.sqrt(0.25) == 0.5
assert isinstance(math.sqrt(4), float)
assert math.sqrt(True) == 1.0
assert math.sqrt(False) == 0.0
assert math.sqrt(float('inf')) == float('inf')
assert math.isnan(math.sqrt(float('nan')))

threw = False
try:
    math.sqrt(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.sqrt('x')
except TypeError:
    threw = True
assert threw

# === math.isqrt() ===
assert math.isqrt(0) == 0
assert math.isqrt(1) == 1
assert math.isqrt(4) == 2
assert math.isqrt(10) == 3
assert math.isqrt(99) == 9
assert math.isqrt(100) == 10
assert math.isqrt(True) == 1

threw = False
try:
    math.isqrt(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.isqrt(4.0)
except TypeError:
    threw = True
assert threw

# === math.cbrt() ===
assert math.cbrt(0) == 0.0
assert math.cbrt(8) == 2.0
assert math.cbrt(-8) == -2.0
assert math.cbrt(1) == 1.0
assert math.cbrt(64) == 4.0
assert math.cbrt(float('inf')) == float('inf')
assert math.cbrt(float('-inf')) == float('-inf')
assert math.isnan(math.cbrt(float('nan')))

threw = False
try:
    math.cbrt('x')
except TypeError:
    threw = True
assert threw

# === math.pow() ===
assert math.pow(2, 3) == 8.0
assert math.pow(2.0, 0.5) == math.sqrt(2)
assert math.pow(0, 0) == 1.0
assert isinstance(math.pow(2, 3), float)
assert math.pow(2, -1) == 0.5
assert math.pow(float('inf'), 0) == 1.0
assert math.pow(float('nan'), 0) == 1.0
assert math.pow(1, float('inf')) == 1.0
assert math.pow(1, float('nan')) == 1.0

threw = False
try:
    math.pow(0, -1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.pow(-1, 0.5)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.pow(2, 1024)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.pow('x', 2)
except TypeError:
    threw = True
assert threw

# === math.exp() ===
assert math.exp(0) == 1.0
assert math.exp(1) == math.e
assert math.exp(float('-inf')) == 0.0
assert math.exp(float('inf')) == float('inf')
assert math.isnan(math.exp(float('nan')))

threw = False
try:
    math.exp(1000)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.exp('x')
except TypeError:
    threw = True
assert threw

# === math.exp2() ===
assert math.exp2(0) == 1.0
assert math.exp2(3) == 8.0
assert math.exp2(10) == 1024.0
assert math.exp2(float('-inf')) == 0.0
assert math.exp2(float('inf')) == float('inf')
assert math.isnan(math.exp2(float('nan')))

threw = False
try:
    math.exp2(1024)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.exp2('x')
except TypeError:
    threw = True
assert threw

# === math.expm1() ===
assert math.expm1(0) == 0.0
assert math.isclose(math.expm1(1), math.e - 1)
assert math.expm1(1e-15) != 0.0
assert math.expm1(float('-inf')) == -1.0
assert math.expm1(float('inf')) == float('inf')
assert math.isnan(math.expm1(float('nan')))

threw = False
try:
    math.expm1(1000)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.expm1('x')
except TypeError:
    threw = True
assert threw

# === math.fabs() ===
assert math.fabs(-5) == 5.0
assert math.fabs(5) == 5.0
assert math.fabs(-3.14) == 3.14
assert math.fabs(0) == 0.0
assert isinstance(math.fabs(-5), float)
assert isinstance(math.fabs(0), float)
assert math.fabs(True) == 1.0
assert math.fabs(False) == 0.0
assert math.fabs(float('inf')) == float('inf')
assert math.fabs(float('-inf')) == float('inf')
assert math.isnan(math.fabs(float('nan')))

threw = False
try:
    math.fabs('x')
except TypeError:
    threw = True
assert threw

# === math.isnan() ===
assert math.isnan(float('nan')) == True
assert math.isnan(1.0) == False
assert math.isnan(0.0) == False
assert math.isnan(float('inf')) == False
assert math.isnan(0) == False
assert math.isnan(True) == False
assert math.isnan(False) == False

threw = False
try:
    math.isnan('x')
except TypeError:
    threw = True
assert threw

# === math.isinf() ===
assert math.isinf(float('inf')) == True
assert math.isinf(float('-inf')) == True
assert math.isinf(1.0) == False
assert math.isinf(float('nan')) == False
assert math.isinf(0) == False
assert math.isinf(True) == False
assert math.isinf(False) == False

threw = False
try:
    math.isinf('x')
except TypeError:
    threw = True
assert threw

# === math.isfinite() ===
assert math.isfinite(1.0) == True
assert math.isfinite(0) == True
assert math.isfinite(float('inf')) == False
assert math.isfinite(float('-inf')) == False
assert math.isfinite(float('nan')) == False
assert math.isfinite(True) == True
assert math.isfinite(False) == True

threw = False
try:
    math.isfinite('x')
except TypeError:
    threw = True
assert threw

# === math.copysign() ===
assert math.copysign(1.0, -0.0) == -1.0
assert math.copysign(-1.0, 1.0) == 1.0
assert math.copysign(5, -3) == -5.0
assert isinstance(math.copysign(5, -3), float)
assert math.copysign(float('inf'), -1.0) == float('-inf')
assert math.copysign(0.0, -1.0) == -0.0
assert math.isnan(math.copysign(float('nan'), -1.0))
assert math.copysign(True, -1) == -1.0

threw = False
try:
    math.copysign('x', 1)
except TypeError:
    threw = True
assert threw

# === math.isclose() ===
assert math.isclose(1.0, 1.0) == True
assert math.isclose(1.0, 1.0000000001) == True
assert math.isclose(1.0, 1.1) == False
assert math.isclose(0.0, 0.0) == True
assert math.isclose(-0.0, 0.0) == True
assert math.isclose(float('inf'), float('inf')) == True
assert math.isclose(float('inf'), 1e308) == False
assert math.isclose(float('nan'), float('nan')) == False
assert math.isclose(1e-15, 0.0) == False
assert math.isclose(0.0, 1e-15) == False

threw = False
try:
    math.isclose('x', 1)
except TypeError:
    threw = True
assert threw

# === math.log() ===
assert math.log(1) == 0.0
assert math.log(math.e) == 1.0
assert math.log(100, 10) == 2.0
assert math.log(1, 10) == 0.0
assert math.log(True) == 0.0
assert math.log(float('inf')) == float('inf')
assert math.isnan(math.log(float('nan')))
assert math.isnan(math.log(float('nan'), 2))
assert math.log(float('inf'), 2) == float('inf')

threw = False
try:
    math.log(0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log(10, 1)
except ZeroDivisionError:
    threw = True
assert threw

threw = False
try:
    math.log(10, 0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log(10, -1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log('x')
except TypeError:
    threw = True
assert threw

# === math.log2() ===
assert math.log2(1) == 0.0
assert math.log2(8) == 3.0
assert math.log2(1024) == 10.0
assert math.log2(True) == 0.0
assert math.log2(float('inf')) == float('inf')
assert math.isnan(math.log2(float('nan')))

threw = False
try:
    math.log2(0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log2(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log2('x')
except TypeError:
    threw = True
assert threw

# === math.log10() ===
assert math.log10(1) == 0.0
assert math.log10(1000) == 3.0
assert math.log10(100) == 2.0
assert math.log10(True) == 0.0
assert math.log10(float('inf')) == float('inf')
assert math.isnan(math.log10(float('nan')))

threw = False
try:
    math.log10(0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log10(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log10('x')
except TypeError:
    threw = True
assert threw

# === math.log1p() ===
assert math.log1p(0) == 0.0
assert math.isclose(math.log1p(math.e - 1), 1.0)
assert math.log1p(float('inf')) == float('inf')
assert math.isnan(math.log1p(float('nan')))

threw = False
try:
    math.log1p(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log1p(-2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.log1p('x')
except TypeError:
    threw = True
assert threw

# === math.factorial() ===
assert math.factorial(0) == 1
assert math.factorial(1) == 1
assert math.factorial(5) == 120
assert math.factorial(10) == 3628800
assert math.factorial(20) == 2432902008176640000
assert math.factorial(True) == 1
assert math.factorial(False) == 1

threw = False
try:
    math.factorial(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.factorial(1.5)
except TypeError:
    threw = True
assert threw

threw = False
try:
    math.factorial('x')
except TypeError:
    threw = True
assert threw

# === math.gcd() ===
assert math.gcd(12, 8) == 4
assert math.gcd(0, 5) == 5
assert math.gcd(5, 0) == 5
assert math.gcd(0, 0) == 0
assert math.gcd(-12, 8) == 4
assert math.gcd(12, -8) == 4
assert math.gcd(-12, -8) == 4
assert math.gcd(7, 13) == 1
assert math.gcd(True, 2) == 1
assert math.gcd(False, 5) == 5

threw = False
try:
    math.gcd(1.5, 2)
except TypeError:
    threw = True
assert threw

threw = False
try:
    math.gcd(2, 1.5)
except TypeError:
    threw = True
assert threw

# === math.lcm() ===
assert math.lcm(4, 6) == 12
assert math.lcm(0, 5) == 0
assert math.lcm(5, 0) == 0
assert math.lcm(0, 0) == 0
assert math.lcm(3, 7) == 21
assert math.lcm(6, 6) == 6
assert math.lcm(-4, 6) == 12
assert math.lcm(-4, -6) == 12
assert math.lcm(True, 2) == 2
assert math.lcm(False, 5) == 0

threw = False
try:
    math.lcm(1.5, 2)
except TypeError:
    threw = True
assert threw

threw = False
try:
    math.lcm(2, 1.5)
except TypeError:
    threw = True
assert threw

# === math.comb() ===
assert math.comb(5, 2) == 10
assert math.comb(10, 0) == 1
assert math.comb(10, 10) == 1
assert math.comb(0, 0) == 1
assert math.comb(5, 6) == 0

threw = False
try:
    math.comb(5, -1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.comb(-1, 2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.comb(5.0, 2)
except TypeError:
    threw = True
assert threw

# === math.perm() ===
assert math.perm(5, 2) == 20
assert math.perm(5, 0) == 1
assert math.perm(5, 5) == 120
assert math.perm(5, 6) == 0

threw = False
try:
    math.perm(5, -1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.perm(-1, 2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.perm(5.0, 2)
except TypeError:
    threw = True
assert threw

# === math.copysign() (already above) ===

# === math.isclose() (already above) ===

# === math.degrees() ===
assert math.degrees(0) == 0.0
assert math.degrees(math.pi) == 180.0
assert math.degrees(math.tau) == 360.0
assert math.degrees(True) == math.degrees(1)
assert math.degrees(float('inf')) == float('inf')
assert math.degrees(float('-inf')) == float('-inf')
assert math.isnan(math.degrees(float('nan')))

threw = False
try:
    math.degrees('x')
except TypeError:
    threw = True
assert threw

# === math.radians() ===
assert math.radians(0) == 0.0
assert math.radians(180) == math.pi
assert math.radians(360) == math.tau
assert math.radians(True) == math.radians(1)
assert math.radians(float('inf')) == float('inf')
assert math.radians(float('-inf')) == float('-inf')
assert math.isnan(math.radians(float('nan')))

threw = False
try:
    math.radians('x')
except TypeError:
    threw = True
assert threw

# === math.sin() ===
assert math.sin(0) == 0.0
assert math.sin(math.pi / 2) == 1.0
assert math.sin(math.pi) < 1e-15
assert math.isnan(math.sin(float('nan')))

threw = False
try:
    math.sin(float('inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.sin(float('-inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.sin('x')
except TypeError:
    threw = True
assert threw

# === math.cos() ===
assert math.cos(0) == 1.0
assert abs(math.cos(math.pi / 2)) < 1e-15
assert math.cos(math.pi) == -1.0
assert math.isnan(math.cos(float('nan')))

threw = False
try:
    math.cos(float('inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.cos(float('-inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.cos('x')
except TypeError:
    threw = True
assert threw

# === math.tan() ===
assert math.tan(0) == 0.0
assert abs(math.tan(math.pi / 4) - 1.0) < 1e-15
assert math.isnan(math.tan(float('nan')))

threw = False
try:
    math.tan(float('inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.tan(float('-inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.tan('x')
except TypeError:
    threw = True
assert threw

# === math.asin() ===
assert math.asin(0) == 0.0
assert math.asin(1) == math.pi / 2
assert math.asin(-1) == -math.pi / 2
assert math.isnan(math.asin(float('nan')))

threw = False
try:
    math.asin(2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.asin(-2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.asin('x')
except TypeError:
    threw = True
assert threw

# === math.acos() ===
assert math.acos(1) == 0.0
assert math.acos(0) == math.pi / 2
assert math.acos(-1) == math.pi
assert math.isnan(math.acos(float('nan')))

threw = False
try:
    math.acos(2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.acos(-2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.acos('x')
except TypeError:
    threw = True
assert threw

# === math.atan() ===
assert math.atan(0) == 0.0
assert math.atan(1) == math.pi / 4
assert math.atan(float('inf')) == math.pi / 2
assert math.atan(float('-inf')) == -math.pi / 2
assert math.isnan(math.atan(float('nan')))

threw = False
try:
    math.atan('x')
except TypeError:
    threw = True
assert threw

# === math.atan2() ===
assert math.atan2(0, 1) == 0.0
assert math.atan2(1, 0) == math.pi / 2
assert math.atan2(0, -1) == math.pi
assert math.atan2(0, 0) == 0.0
assert math.atan2(-1, 0) == -math.pi / 2
assert math.isclose(math.atan2(float('inf'), float('inf')), math.pi / 4)
assert math.isnan(math.atan2(float('nan'), 1))
assert math.isnan(math.atan2(1, float('nan')))

threw = False
try:
    math.atan2('x', 1)
except TypeError:
    threw = True
assert threw

# === math.sinh() ===
assert math.sinh(0) == 0.0
assert math.isclose(math.sinh(1), 1.1752011936438014)
assert math.sinh(float('inf')) == float('inf')
assert math.sinh(float('-inf')) == float('-inf')
assert math.isnan(math.sinh(float('nan')))

threw = False
try:
    math.sinh(1000)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.sinh('x')
except TypeError:
    threw = True
assert threw

# === math.cosh() ===
assert math.cosh(0) == 1.0
assert math.isclose(math.cosh(1), 1.5430806348152437)
assert math.cosh(float('inf')) == float('inf')
assert math.cosh(float('-inf')) == float('inf')
assert math.isnan(math.cosh(float('nan')))

threw = False
try:
    math.cosh(1000)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.cosh('x')
except TypeError:
    threw = True
assert threw

# === math.tanh() ===
assert math.tanh(0) == 0.0
assert math.tanh(float('inf')) == 1.0
assert math.tanh(float('-inf')) == -1.0
assert math.tanh(1) == 0.7615941559557649
assert math.isnan(math.tanh(float('nan')))

threw = False
try:
    math.tanh('x')
except TypeError:
    threw = True
assert threw

# === math.asinh() ===
assert math.asinh(0) == 0.0
assert math.isclose(math.asinh(1), 0.881373587019543)
assert math.asinh(float('inf')) == float('inf')
assert math.asinh(float('-inf')) == float('-inf')
assert math.isnan(math.asinh(float('nan')))

threw = False
try:
    math.asinh('x')
except TypeError:
    threw = True
assert threw

# === math.acosh() ===
assert math.acosh(1) == 0.0
assert math.isclose(math.acosh(2), 1.3169578969248166)
assert math.acosh(float('inf')) == float('inf')
assert math.isnan(math.acosh(float('nan')))

threw = False
try:
    math.acosh(0.5)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.acosh('x')
except TypeError:
    threw = True
assert threw

# === math.atanh() ===
assert math.atanh(0) == 0.0
assert math.isclose(math.atanh(0.5), 0.5493061443340549)
assert math.isnan(math.atanh(float('nan')))

threw = False
try:
    math.atanh(1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.atanh(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.atanh('x')
except TypeError:
    threw = True
assert threw

# === math.fmod() ===
assert math.fmod(10, 3) == 1.0
assert math.fmod(-10, 3) == -1.0
assert math.fmod(10.5, 3) == 1.5
assert math.fmod(3, float('inf')) == 3.0
assert math.isnan(math.fmod(float('nan'), 3))
assert math.isnan(math.fmod(3, float('nan')))
assert math.isnan(math.fmod(float('nan'), float('nan')))

threw = False
try:
    math.fmod(10, 0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.fmod(float('inf'), 3)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.fmod('x', 3)
except TypeError:
    threw = True
assert threw

# === math.remainder() ===
assert math.remainder(10, 3) == 1.0
assert math.remainder(10, 4) == 2.0
assert math.remainder(-10, 3) == -1.0
assert math.remainder(10.5, 3) == -1.5
assert math.remainder(3, float('inf')) == 3.0
assert math.isnan(math.remainder(float('nan'), 3))
assert math.isnan(math.remainder(3, float('nan')))

threw = False
try:
    math.remainder(10, 0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.remainder(float('inf'), 3)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.remainder('x', 3)
except TypeError:
    threw = True
assert threw

# === math.modf() ===
r = math.modf(3.5)
assert r == (0.5, 3.0)
r = math.modf(-3.5)
assert r == (-0.5, -3.0)
r = math.modf(0.0)
assert r == (0.0, 0.0)
r = math.modf(float('inf'))
assert r == (0.0, float('inf'))
r = math.modf(float('-inf'))
# modf(-inf) returns (-0.0, -inf), verify both parts including sign of fractional
assert str(r[0]) == '-0.0'
assert r[1] == float('-inf')
r_nan = math.modf(float('nan'))
assert math.isnan(r_nan[0]) and math.isnan(r_nan[1]), 'modf(nan) both parts are nan'

threw = False
try:
    math.modf('x')
except TypeError:
    threw = True
assert threw

# === math.frexp() ===
r = math.frexp(0.0)
assert r == (0.0, 0)
r = math.frexp(3.5)
assert r == (0.875, 2)
r = math.frexp(1.0)
assert r == (0.5, 1)
r = math.frexp(-1.0)
assert r == (-0.5, 1)
r = math.frexp(float('inf'))
assert r == (float('inf'), 0)
r = math.frexp(float('-inf'))
assert r == (float('-inf'), 0)
r_nan = math.frexp(float('nan'))
assert math.isnan(r_nan[0]) and r_nan[1] == 0, 'frexp(nan)'

threw = False
try:
    math.frexp('x')
except TypeError:
    threw = True
assert threw

# === math.ldexp() ===
assert math.ldexp(0.875, 2) == 3.5
assert math.ldexp(1.0, 0) == 1.0
assert math.ldexp(0.5, 1) == 1.0
assert math.ldexp(1.0, -1075) == 0.0
assert math.ldexp(float('inf'), 1) == float('inf')
assert math.isnan(math.ldexp(float('nan'), 1))
assert math.ldexp(0.0, 1000) == 0.0

threw = False
try:
    math.ldexp(1.0, 1075)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.ldexp(0.5, 1025)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.ldexp('x', 1)
except TypeError:
    threw = True
assert threw

# === math.gamma() ===
assert math.gamma(1) == 1.0
assert math.gamma(5) == 24.0
assert math.isclose(math.gamma(0.5), math.sqrt(math.pi))
assert math.gamma(float('inf')) == float('inf')
assert math.isnan(math.gamma(float('nan')))

threw = False
try:
    math.gamma(0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.gamma(-1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.gamma(float('-inf'))
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.gamma(172)
except OverflowError:
    threw = True
assert threw

threw = False
try:
    math.gamma('x')
except TypeError:
    threw = True
assert threw

# === math.lgamma() ===
assert math.lgamma(1) == 0.0
assert math.isclose(math.lgamma(5), math.log(24))
assert math.lgamma(float('inf')) == float('inf')
assert math.isnan(math.lgamma(float('nan')))
assert math.isclose(math.lgamma(-0.5), 1.265512123484645)

threw = False
try:
    math.lgamma(0)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.lgamma(-2)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.lgamma('x')
except TypeError:
    threw = True
assert threw

# === math.erf() ===
assert math.erf(0) == 0.0
assert math.isclose(math.erf(1), 0.8427007929497148, rel_tol=1e-15)
assert math.isclose(math.erf(-1), -0.8427007929497148, rel_tol=1e-15)
assert math.erf(float('inf')) == 1.0
assert math.erf(float('-inf')) == -1.0
assert math.isnan(math.erf(float('nan')))

threw = False
try:
    math.erf('x')
except TypeError:
    threw = True
assert threw

# === math.erfc() ===
assert math.erfc(0) == 1.0
assert math.isclose(math.erfc(1), 1.0 - math.erf(1))
assert math.erfc(float('inf')) == 0.0
assert math.erfc(float('-inf')) == 2.0
assert math.isnan(math.erfc(float('nan')))

threw = False
try:
    math.erfc('x')
except TypeError:
    threw = True
assert threw

# === math.nextafter() ===
r = math.nextafter(1.0, 2.0)
assert r > 1.0
assert r == 1.0000000000000002
r = math.nextafter(1.0, 0.0)
assert r < 1.0
assert math.nextafter(0.0, 1.0) == 5e-324
assert math.nextafter(0.0, -1.0) == -5e-324
assert math.isnan(math.nextafter(float('nan'), 1.0))
assert math.isnan(math.nextafter(1.0, float('nan')))
assert math.nextafter(float('inf'), float('inf')) == float('inf')
assert math.nextafter(1.0, 1.0) == 1.0

threw = False
try:
    math.nextafter('x', 1.0)
except TypeError:
    threw = True
assert threw

# === math.ulp() ===
assert math.ulp(1.0) == 2.220446049250313e-16
assert math.ulp(-1.0) == 2.220446049250313e-16
assert math.ulp(0.0) == 5e-324
assert math.isinf(math.ulp(float('inf')))
assert math.isnan(math.ulp(float('nan')))
assert math.ulp(5e-324) == 5e-324

threw = False
try:
    math.ulp('x')
except TypeError:
    threw = True
assert threw

# === Additional edge cases for coverage ===

# --- frexp subnormal numbers ---
r = math.frexp(5e-324)
assert r == (0.5, -1073)

# --- ldexp large negative exponent (underflow to zero) ---
assert math.ldexp(1.0, -2000) == 0.0

# --- fmod NaN propagation edge cases ---
assert math.isnan(math.fmod(float('inf'), float('nan')))
assert math.isnan(math.fmod(float('nan'), 0))

# --- gamma negative non-integer (reflection formula) ---
assert math.isclose(math.gamma(-0.5), -3.544907701811032)
assert math.isclose(math.gamma(-1.5), 2.3632718012073544)

# --- lgamma(-inf) returns inf ---
assert math.lgamma(float('-inf')) == float('inf')

# --- lgamma overflow for extremely large input ---
threw = False
try:
    math.lgamma(1e308)
except OverflowError:
    threw = True
assert threw

# --- lgamma negative non-integer (reflection formula) ---
assert math.isclose(math.lgamma(-0.5), 1.265512123484645)

# ==========================================================
# Tests for bug fixes and CPython behavior alignment
# ==========================================================

# === floor/ceil/trunc with large floats (LongInt promotion) ===
large_floor = math.floor(1e300)
assert large_floor > 0
assert (
    large_floor
    == 1000000000000000052504760255204420248704468581108159154915854115511802457988908195786371375080447864043704443832883878176942523235360430575644792184786706982848387200926575803737830233794788090059368953234970799945081119038967640880074652742780142494579258788820056842838115669472196386865459400540160
)

large_ceil = math.ceil(-1e300)
assert large_ceil < 0
assert (
    large_ceil
    == -1000000000000000052504760255204420248704468581108159154915854115511802457988908195786371375080447864043704443832883878176942523235360430575644792184786706982848387200926575803737830233794788090059368953234970799945081119038967640880074652742780142494579258788820056842838115669472196386865459400540160
)

large_trunc = math.trunc(1e300)
assert large_trunc == math.floor(1e300)
large_trunc_neg = math.trunc(-1e300)
assert large_trunc_neg == math.ceil(-1e300)

# floor/ceil should still work normally for values within i64 range
assert math.floor(1e18) == 1000000000000000000
assert math.floor(2.7) == 2
assert math.ceil(-2.7) == -2

# === ldexp with large exponent but small x ===
assert math.ldexp(5e-324, 1075) == 2.0
assert math.ldexp(0.5, 1024) == 8.98846567431158e307

# === modf(-0.0) sign preservation ===
frac, integer = math.modf(-0.0)
# Both parts should be -0.0
assert str(frac) == '-0.0'
assert str(integer) == '-0.0'

# === erfc accuracy for large x ===
erfc_6 = math.erfc(6)
assert erfc_6 > 0
assert math.isclose(erfc_6, 2.1519736712498913e-17, rel_tol=1e-12)
erfc_neg6 = math.erfc(-6)
assert erfc_neg6 == 2.0
assert math.erfc(0) == 1.0

# === variadic gcd ===
assert math.gcd() == 0
assert math.gcd(12) == 12
assert math.gcd(-12) == 12
assert math.gcd(12, 8) == 4
assert math.gcd(12, 8, 6) == 2

# === variadic lcm ===
assert math.lcm() == 1
assert math.lcm(12) == 12
assert math.lcm(-12) == 12
assert math.lcm(4, 6) == 12
assert math.lcm(4, 6, 10) == 60
assert math.lcm(0, 5) == 0

# === perm with optional k ===
assert math.perm(5) == 120
assert math.perm(5, 2) == 20
assert math.perm(0) == 1

# === isclose with rel_tol/abs_tol kwargs ===
assert math.isclose(1.0, 1.1, rel_tol=0.2) == True
assert math.isclose(1.0, 1.1, abs_tol=0.2) == True
assert math.isclose(1.0, 1.1) == False
assert math.isclose(1.0, 1.0 + 1e-10) == True

# === isclose with a/b as keyword arguments (CPython accepts these) ===
assert math.isclose(a=1.0, b=1.0) == True
assert math.isclose(1.0, b=1.0) == True
assert math.isclose(a=1.0, b=1.1, abs_tol=0.2) == True
# Passing `a` twice (positional + keyword) is a duplicate
threw = False
try:
    math.isclose(1.0, 2.0, a=3.0)
except TypeError:
    threw = True
assert threw

# isclose negative tolerance raises ValueError
threw = False
try:
    math.isclose(1.0, 1.0, rel_tol=-0.1)
except ValueError:
    threw = True
assert threw

threw = False
try:
    math.isclose(1.0, 1.0, abs_tol=-0.1)
except ValueError:
    threw = True
assert threw

# isclose unknown kwarg raises TypeError
threw = False
try:
    math.isclose(1.0, 1.0, foo=0.1)
except TypeError:
    threw = True
assert threw

# === ldexp sign preservation ===
assert str(math.ldexp(-0.0, 1000)) == '-0.0'
assert math.ldexp(float('-inf'), 1) == float('-inf')

# === frexp(-0.0) sign preservation ===
m, e = math.frexp(-0.0)
assert str(m) == '-0.0'
assert e == 0

# === comb with GCD reduction (values that would overflow intermediate without it) ===
assert math.comb(62, 31) == 465428353255261088
assert math.comb(61, 30) == 232714176627630544

# === isclose arg count errors ===
threw = False
try:
    math.isclose()
except TypeError:
    threw = True
assert threw

threw = False
try:
    math.isclose(1.0)
except TypeError:
    threw = True
assert threw

threw = False
try:
    math.isclose(1.0, 2.0, 3.0)
except TypeError:
    threw = True
assert threw

# === perm(-1) single-arg error message ===
threw = False
try:
    math.perm(-1)
except ValueError:
    threw = True
assert threw

# === gcd/lcm with i64::MIN-like values (u64 promotion) ===
# gcd(-9223372036854775808, 0) should return 9223372036854775808 (exceeds i64::MAX)
big_gcd = math.gcd(-9223372036854775808, 0)
assert big_gcd == 9223372036854775808

# === isqrt large values (Newton's method refinement) ===
# Values near i64::MAX where f64 sqrt loses precision
assert math.isqrt(9223372036854775807) == 3037000499
assert math.isqrt(9223372030926249001) == 3037000499
assert math.isqrt(9223372030926249000) == 3037000498

# === erf/erfc range coverage ===
# Small x (|x| < 0.84375): exercises PP/QQ polynomial
assert math.erf(0.1) == 0.1124629160182849
assert math.erf(0.5) == 0.5204998778130465

# Medium x (1.25 ≤ |x| < 28): exercises erfc_inner path
assert math.erf(2.0) == 0.9953222650189527
assert math.erf(5.0) == 0.9999999999984626

# erfc in range 3 (1.25 ≤ |x| < 2.857): exercises RA/SA coefficients
erfc_2 = math.erfc(2.0)
assert math.isclose(erfc_2, 0.004677734981047266, rel_tol=1e-12)