forked from nedbat/byterun
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathChangeLog-spell-corrected.diff
More file actions
678 lines (493 loc) · 26.2 KB
/
ChangeLog-spell-corrected.diff
File metadata and controls
678 lines (493 loc) · 26.2 KB
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
--- ChangeLog 2025-10-07 20:20:53.723534522 -0400
+++ ChangeLog-spell-corrected 2025-10-07 20:17:48.424056286 -0400
@@ -49,7 +49,7 @@
2025-10-03 rocky <rby@dusytfeet.com>
* test/test-single-version.sh, xpython/byteop/__init__.py,
- xpython/byteop/byteop38pypy.py, xpython/byteop/byteop39pypy.py:
+ xpython/byteop/byteop38pypy.py, xpython/byteop/byteop39pypy.py:
Better PyPy handling
2025-09-11 rocky <rby@dusytfeet.com>
@@ -126,7 +126,7 @@
* xpython/byteop/byteop311.py, xpython/byteop/byteop39.py,
xpython/vm.py, xpython/vmtrace.py: Correct 3.11 PUSH_EXC_INFO and
- 3.9 RERAISE with >0 Interestingly, for 3.9 RERAISE, we hadn't come accross opargs != 0.
+ 3.9 RERAISE with >0 Interestingly, for 3.9 RERAISE, we hadn't come across opargs != 0.
2025-07-06 rocky <rby@dusytfeet.com>
@@ -176,7 +176,7 @@
2025-07-01 rocky <rby@dusytfeet.com>
* test/examples/functions/{test_closures.py =>
- 080_test_closures.py}, xpython/byteop/byteop.py, xpython/vm.py:
+ 080_test_closures.py}, xpython/byteop/byteop.py, xpython/vm.py:
Correct eval() using byteocde interpreter A prior change messed up eval() via compile and running bytecode
2025-06-30 rocky <rby@dusytfeet.com>
@@ -189,7 +189,7 @@
* xpython/byteop/byteop311.py: Clarify use of "delta"; use parameter
named offset. Since vm.py adjusts relative delta into an offset, in the JREL
- opcodes change the paramter name from "delta" to "offset". But keep
+ opcodes change the parameter name from "delta" to "offset". But keep
the docstring comment to "delta" to match the 3.11 opcode
descriptions.
@@ -202,7 +202,7 @@
* test/examples/expressions/test_eval.py,
test/examples/stmts/008_test_exec.py,
- test/examples/stmts/011_test_eval.py, xpython/byteop/byteop312.py:
+ test/examples/stmts/011_test_eval.py, xpython/byteop/byteop312.py:
Bang on exec/eval tests
2025-06-24 rocky <rby@dusytfeet.com>
@@ -328,7 +328,7 @@
2025-06-14 rocky <rby@dusytfeet.com>
* test/examples/data/test_fstring.py, xpython/byteop/byteop311.py,
- xpython/vm.py, xpython/vmtrace.py: Correct for weird SWAP behavior New 3.11 SWAP seems to cound TOS from 1 rather than 0?
+ xpython/vm.py, xpython/vmtrace.py: Correct for weird SWAP behavior New 3.11 SWAP seems to count TOS from 1 rather than 0?
2025-06-14 rocky <rby@dusytfeet.com>
@@ -385,7 +385,7 @@
2025-06-09 rocky <rby@dusytfeet.com>
- * xpython/byteop/byteop311.py, xpython/vm.py, xpython/vmtrace.py:
+ * xpython/byteop/byteop311.py, xpython/vm.py, xpython/vmtrace.py:
Bang on exception handling for 3.11
2025-06-09 rocky <rby@dusytfeet.com>
@@ -409,21 +409,21 @@
2025-06-06 rocky <rby@dusytfeet.com>
* xpython/byteop/byteop24.py, xpython/pyobj.py, xpython/vm.py: WIP -
- Better tracebacks More work on separating exception mechanisms in differen Python
+ Better tracebacks More work on separating exception mechanisms in different Python
versions. Exception handling is not done right for at least 3.11
2025-06-06 rocky <rby@dusytfeet.com>
- * test/examples/basic/test_object_attrs_not-shared_with_class.py:
+ * test/examples/basic/test_object_attrs_not-shared_with_class.py:
Align tests a little bit
2025-06-06 rocky <rby@dusytfeet.com>
- * test/test_basic.py, xpython/byteop/byteop24.py, xpython/pyobj.py:
+ * test/test_basic.py, xpython/byteop/byteop24.py, xpython/pyobj.py:
Start to handle exceptions more correctly... Don't rely on builtin-exception handling matching interpreter
exception handling. This shortcut works best when interpreter is
same as the same as the bytecode version, but gets worse and worse
- as the two get farther appart in changes. Because Python's exception
+ as the two get farther apart in changes. Because Python's exception
handling changs. The exception objects can be different and the error messages can be
different.
@@ -438,7 +438,7 @@
2025-06-04 rocky <rby@dusytfeet.com>
- * test/test_basic.py: Sart removing older style tests
+ * test/test_basic.py: Start removing older style tests
2025-06-04 rocky <rby@dusytfeet.com>
@@ -515,7 +515,7 @@
xpython/byteop/byteop25.py, xpython/byteop/byteop27.py,
xpython/byteop/byteop311.py, xpython/byteop/byteop32.py,
xpython/byteop/byteop33.py, xpython/byteop/byteop35.py,
- xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/vm.py:
+ xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/vm.py:
Implement KW_NAMES add property decorator to vm.top. Add vm.is_stack_empty property
2025-05-31 rocky <rby@dusytfeet.com>
@@ -534,7 +534,7 @@
2025-05-31 rocky <rby@dusytfeet.com>
- * admin-tools/checkout_common.sh, admin-tools/setup-python-3.6.sh:
+ * admin-tools/checkout_common.sh, admin-tools/setup-python-3.6.sh:
Start 3.11+ seperatation as master
2024-08-26 rocky <rby@dusytfeet.com>
@@ -543,7 +543,7 @@
2024-07-24 rocky <rby@dusytfeet.com>
- * admin-tools/make-dist-2.7.sh, admin-tools/setup-python-2.7.sh:
+ * admin-tools/make-dist-2.7.sh, admin-tools/setup-python-2.7.sh:
Administrivia
2024-07-24 rocky <rby@dusytfeet.com>
@@ -574,7 +574,7 @@
* admin-tools/checkout_common.sh, admin-tools/merge-for-2.7.sh,
admin-tools/merge-for-3.1.sh, admin-tools/merge-for-3.3.sh,
admin-tools/setup-master.sh, admin-tools/setup-python-2.7.sh,
- admin-tools/setup-python-3.1.sh, admin-tools/setup-python-3.3.sh:
+ admin-tools/setup-python-3.1.sh, admin-tools/setup-python-3.3.sh:
Administrivia
2024-07-22 rocky <rby@dusytfeet.com>
@@ -633,7 +633,7 @@
2024-03-25 rocky <rby@dusytfeet.com>
- * admin-tools/merge-for-2.7.sh, admin-tools/merge-for-3.1.sh:
+ * admin-tools/merge-for-2.7.sh, admin-tools/merge-for-3.1.sh:
Administrivia
2024-03-25 rocky <rby@dusytfeet.com>
@@ -671,7 +671,7 @@
2024-02-12 rocky <rby@dusytfeet.com>
- * admin-tools/merge-for-3.1.sh, admin-tools/merge-for-3.3.sh:
+ * admin-tools/merge-for-3.1.sh, admin-tools/merge-for-3.3.sh:
Administrivia
2024-02-12 rocky <rby@dusytfeet.com>
@@ -686,7 +686,7 @@
2024-02-12 rocky <rby@dusytfeet.com>
- * admin-tools/setup-master.sh, admin-tools/setup-python-3.3.sh:
+ * admin-tools/setup-master.sh, admin-tools/setup-python-3.3.sh:
Admnistrivia
2024-02-11 rocky <rby@dusytfeet.com>
@@ -826,7 +826,7 @@
2023-06-10 rocky <rb@dustyfeet.com>
- * admin-tools/pyenv-newest-versions, admin-tools/setup-master.sh:
+ * admin-tools/pyenv-newest-versions, admin-tools/setup-master.sh:
Bump testing versions
2023-05-28 rocky <rby@dusytfeet.com>
@@ -838,7 +838,7 @@
xpython/byteop/byteop32.py, xpython/byteop/byteop33.py,
xpython/byteop/byteop34.py, xpython/execfile.py, xpython/pyobj.py,
xpython/stdlib/builtins.py, xpython/stdlib/inspect2.py,
- xpython/stdlib/inspect3.py, xpython/vm.py, xpython/vmtrace.py:
+ xpython/stdlib/inspect3.py, xpython/vm.py, xpython/vmtrace.py:
flake, isort, & black
2023-05-28 rocky <rby@dusytfeet.com>
@@ -857,7 +857,7 @@
2023-03-20 rocky <rby@dusytfeet.com>
- * xpython/stdlib/types34.py: Repalce PYTHON_VERSION with
+ * xpython/stdlib/types34.py: Replace PYTHON_VERSION with
PYTHON_VERSION_TRIPLE
2023-01-30 rocky <rby@dusytfeet.com>
@@ -1021,7 +1021,7 @@
2022-04-01 rocky <rby@dusytfeet.com>
* xpython/execfile.py, xpython/stdlib/builtins.py: Add cmp() builtin
- compatibility ... more generally start to allow builtin compatability between Python
+ compatibility ... more generally start to allow builtin compatibility between Python
versions
2022-04-01 rocky <rby@dusytfeet.com>
@@ -1032,7 +1032,7 @@
* xpython/byteop/byteop24.py, xpython/byteop/byteop26.py,
xpython/stdlib/__init__.py, xpython/stdlib/itertools.py: 3.x
- Compatibility for izip_longest and 2.x compatability for zip_longest
+ Compatibility for izip_longest and 2.x compatibility for zip_longest
2022-03-31 rocky <rby@dusytfeet.com>
@@ -1041,12 +1041,12 @@
2022-03-31 rocky <rby@dusytfeet.com>
- * Makefile, xpython/byteop/byteop24.py, xpython/byteop/byteop27.py:
+ * Makefile, xpython/byteop/byteop24.py, xpython/byteop/byteop27.py:
LIST_APPEND() changes between 2.6 and 2.7... Add some more self-checking bytecode
2022-03-30 rocky <rby@dusytfeet.com>
- * test/examples/stmts/test_import.py, xpython/byteop/byteop.py:
+ * test/examples/stmts/test_import.py, xpython/byteop/byteop.py:
implement BINARY_DIVIDE (2.x) Add import test
2022-03-16 rocky <rby@dusytfeet.com>
@@ -1079,7 +1079,7 @@
2021-11-28 rocky <rby@dusytfeet.com>
- * admin-tools/setup-master.sh, admin-tools/setup-python-3.3.sh:
+ * admin-tools/setup-master.sh, admin-tools/setup-python-3.3.sh:
Administrivia
2021-11-25 rocky <rby@dusytfeet.com>
@@ -1131,7 +1131,7 @@
* admin-tools/pyenv-newest-versions,
test/examples/basic/test_callback.py,
xpython/byteop/byteop37pypy.py: More complete PyPY 3.7
- LOOKUP_METHOD_KW handles postional args now
+ LOOKUP_METHOD_KW handles positional args now
2021-11-22 rocky <rby@dusytfeet.com>
@@ -1150,13 +1150,13 @@
2021-11-20 rocky <rby@dusytfeet.com>
- * xpython/byteop/byteop37pypy.py: PyPy stuff Note CALL_METHOD_KW is not implemented Move pypy compiled files ot a
+ * xpython/byteop/byteop37pypy.py: PyPy stuff Note CALL_METHOD_KW is not implemented Move pypy compiled files to a
more natural place
2021-11-20 rocky <rby@dusytfeet.com>
* admin-tools/check-3.3-3.5-versions.sh,
- admin-tools/check-newest-versions.sh, admin-tools/check-versions.sh:
+ admin-tools/check-newest-versions.sh, admin-tools/check-versions.sh:
Administrivia
2021-11-20 rocky <rby@dusytfeet.com>
@@ -1218,7 +1218,7 @@
* test/compile-file.py, xpython/byteop/byteop27.py,
xpython/byteop/byteop310.py, xpython/vm.py: Adjust relative jumps
- for 3.10 Rmove duplicate 2.7 JUMP_ABSOLUTE
+ for 3.10 Remove duplicate 2.7 JUMP_ABSOLUTE
2021-11-11 rocky <rby@dusytfeet.com>
@@ -1244,7 +1244,7 @@
xpython/byteop/byteop36pypy.py, xpython/byteop/byteop37.py,
xpython/byteop/byteop37pypy.py, xpython/byteop/byteop38.py,
xpython/byteop/byteop38pypy.py, xpython/byteop/byteop39.py,
- xpython/byteop/byteoppypy.py, xpython/pyobj.py, xpython/vm.py:
+ xpython/byteop/byteoppypy.py, xpython/pyobj.py, xpython/vm.py:
Remove from __future__
2021-11-10 rocky <rby@dusytfeet.com>
@@ -1310,7 +1310,7 @@
2021-11-09 rocky <rby@dusytfeet.com>
- * xpython/byteop/byteop.py, xpython/execfile.py: Two tweaks... * Check for older source code and warn * Give warning about cros interpet for eval and exec once
+ * xpython/byteop/byteop.py, xpython/execfile.py: Two tweaks... * Check for older source code and warn * Give warning about cross interpret for eval and exec once
2021-11-08 rocky <rby@dusytfeet.com>
@@ -1340,7 +1340,7 @@
2021-11-07 rocky <rocky@dusytfeet.com>
- * admin-tools/setup-master.sh, admin-tools/setup-python-3.5.sh:
+ * admin-tools/setup-master.sh, admin-tools/setup-python-3.5.sh:
Administrivia
2021-11-07 R. Bernstein <rocky@users.noreply.github.com>
@@ -1743,7 +1743,7 @@
* .pre-commit-config.yaml, __pkginfo__.py, test/add-test.sh,
test/vmtest.py, xpython/__main__.py, xpython/byteop/__init__.py,
- xpython/byteop/byteop39.py, xpython/execfile.py, xpython/version.py:
+ xpython/byteop/byteop39.py, xpython/execfile.py, xpython/version.py:
Start 3.9 bytecode
2021-02-13 rocky <rocky@dusytfeet.com>
@@ -1780,7 +1780,7 @@
2020-07-28 rocky <rocky@dusytfeet.com>
- * test/examples/basic/test_building_stuff.py, test/test_basic.py:
+ * test/examples/basic/test_building_stuff.py, test/test_basic.py:
Add More 3.8 tests. Make test_building_stuff.py self checking
2020-07-28 rocky <rocky@dusytfeet.com>
@@ -1867,7 +1867,7 @@
2020-06-28 rocky <rocky@dusytfeet.com>
- * ChangeLog, Makefile, NEWS.md, __pkginfo__.py, xpython/version.py:
+ * ChangeLog, Makefile, NEWS.md, __pkginfo__.py, xpython/version.py:
Get ready for release 1.3.4
2020-06-23 rocky <rocky@dusytfeet.com>
@@ -1896,13 +1896,13 @@
2020-06-20 rocky <rb@dustyfeet.com>
- * test/examples/functions/test_closures.py, test/test_functions.py:
+ * test/examples/functions/test_closures.py, test/test_functions.py:
More tests converted and expanded coverage
2020-06-20 rocky <rocky@dusytfeet.com>
* test/examples/functions/test_partial.py,
- test/examples/functions/test_recursion.py, test/test_functions.py:
+ test/examples/functions/test_recursion.py, test/test_functions.py:
Convert a couple of existing test cases... to newer test framework
2020-06-18 rocky <rb@dustyfeet.com>
@@ -1952,7 +1952,7 @@
2020-06-11 rocky <rb@dustyfeet.com>
- * test/test_compat.py: 3.4 compatability running 3.5+... Allow testing against pyobj.Generator. Disable coroutine test in
+ * test/test_compat.py: 3.4 compatibility running 3.5+... Allow testing against pyobj.Generator. Disable coroutine test in
GET_YIELD_FROM_ITER.
2020-06-10 rocky <rocky@dusytfeet.com>
@@ -1965,7 +1965,7 @@
2020-06-08 rocky <rocky@dusytfeet.com>
* test/stdlib/3.6-exclude.sh, test/test_compat.py,
- xpython/byteop/byteop.py: Update compatibilty... If we use a later xdis, some of the problems with bytestrings goes
+ xpython/byteop/byteop.py: Update compatibility... If we use a later xdis, some of the problems with bytestrings goes
away.
2020-06-07 rocky <rocky@dusytfeet.com>
@@ -1979,8 +1979,8 @@
2020-06-06 rocky <rocky@dusytfeet.com>
* test/stdlib/2.7-exclude.sh, test/stdlib/3.6-exclude.sh,
- test/test_compat.py, xpython/byteop/byteop.py, xpython/pyobj.py:
- Fill in more Method fields... update stdlib exclusions, and compatability matrix
+ test/test_compat.py, xpython/byteop/byteop.py, xpython/pyobj.py:
+ Fill in more Method fields... update stdlib exclusions, and compatibility matrix
2020-06-06 rocky <rocky@dusytfeet.com>
@@ -2051,7 +2051,7 @@
2020-06-03 rocky <rb@dustyfeet.com>
- * test/examples/functions/test_wraps.py, test/test_functions.py:
+ * test/examples/functions/test_wraps.py, test/test_functions.py:
Split out test in prepration for freeops fixup
2020-06-03 rocky <rb@dustyfeet.com>
@@ -2076,12 +2076,12 @@
xpython/pyobj.py, xpython/stdlib/inspect3.py: Fix inspect3 bug in
getting kwonly signatures... This allows us to expand the compatibility matrix, but in general
this the matrix is kind of sketchy since some things we list as
- compatible are only largely compatbile, and many tests between
+ compatible are only largely compatible, and many tests between
"incompatible" versions does ineed work. Add more Python 2.4 tests
2020-06-02 rocky <rocky@dusytfeet.com>
- * README.rst, test/test_functions.py, xpython/byteop/byteop24.py:
+ * README.rst, test/test_functions.py, xpython/byteop/byteop24.py:
Note what's up with closure test.. where a cell variable name might appear more than once. Need to comment out our closure test for now until this is
straightened out.
@@ -2108,7 +2108,7 @@
2020-06-01 rocky <rocky@dusytfeet.com>
* xpython/byteop/byteop25.py, xpython/vm.py: Improved operator
- formating and ... more pre 2.7 tests
+ formatting and ... more pre 2.7 tests
2020-06-01 rocky <rb@dustyfeet.com>
@@ -2187,12 +2187,12 @@
2020-05-30 rocky <rocky@dusytfeet.com>
* README.rst, xpython/pyobj.py, xpython/stdlib/inspect2.py,
- xpython/stdlib/inspect3.py: Get Python 2.x signatures from 3.x... and go over README.rst since log infomation has been improved.
+ xpython/stdlib/inspect3.py: Get Python 2.x signatures from 3.x... and go over README.rst since log infomartion has been improved.
2020-05-29 rocky <rocky@dusytfeet.com>
* xpython/byteop/byteop27.py: cross-version interpreter
- compatability... in SETUP_WITH
+ compatibility... in SETUP_WITH
2020-05-29 rocky <rocky@dusytfeet.com>
@@ -2326,7 +2326,7 @@
2020-05-24 rocky <rocky@dusytfeet.com>
- * test/examples/exceptions/test_reraise.py, test/test_exceptions.py:
+ * test/examples/exceptions/test_reraise.py, test/test_exceptions.py:
Separate and comment out test_reraise.py until ... We understand how to do properly. byterun uses six.raise which requires a real traceback and LOAD_NAME
raises NameError which makes six.raise work. However down the line we really want to separate interpreter
exceptions from interpreted exceptions. Right now, we can't do that - sigh.
@@ -2357,7 +2357,7 @@
2020-05-23 rocky <rocky@dusytfeet.com>
- * xpython/buildclass.py, xpython/byteop/byteop.py, xpython/vm.py:
+ * xpython/buildclass.py, xpython/byteop/byteop.py, xpython/vm.py:
Slightly better cross-version interpreting... Todo: need to see if we can convert code objects between versions
2020-05-22 rocky <rocky@dusytfeet.com>
@@ -2392,7 +2392,7 @@
2020-05-20 rocky <rocky@dusytfeet.com>
- * xpython/execfile.py, xpython/vm.py, xpython/vmtrace.py:
+ * xpython/execfile.py, xpython/vm.py, xpython/vmtrace.py:
format_instruction handled as callback... so we can replace it with something that colorizes. One callback signature mismatched was fixed too.
2020-05-19 rocky <rocky@dusytfeet.com>
@@ -2469,7 +2469,7 @@
2020-05-13 rocky <rocky@dusytfeet.com>
* test/stdlib/3.3-exclude.sh, test/stdlib/3.4-exclude.sh,
- test/stdlib/3.5-exclude.sh, xpython/execfile.py, xpython/pyobj.py:
+ test/stdlib/3.5-exclude.sh, xpython/execfile.py, xpython/pyobj.py:
Go over tests... For now don't use docstring in Module since that is getting picked
up in Python's stdlib unit tests
@@ -2502,7 +2502,7 @@
2020-05-13 rocky <rb@dustyfeet.com>
- * xpython/__main__.py, xpython/execfile.py, xpython/vmtrace.py:
+ * xpython/__main__.py, xpython/execfile.py, xpython/vmtrace.py:
Revise trace callback API... to take account into additional arguments needed by
instruction_info().
@@ -2519,7 +2519,7 @@
* test/compile-file.py, test/test_with.py, test/vmtest.py,
xpython/buildclass.py, xpython/byteop/byteop25.py: More pypy
- complient. Use inspect.isfunction()
+ compliant. Use inspect.isfunction()
2020-05-12 rocky <rocky@dusytfeet.com>
@@ -2545,7 +2545,7 @@
2020-05-12 rocky <rb@dustyfeet.com>
* xpython/__main__.py, xpython/execfile.py, xpython/vm.py: Exception
- handling.. * Exception names have changed * Catch uncaught execptions at the end when no tracing * Lint-like fixes R# with '#' will be ignored, and an empty message aborts the commit.
+ handling.. * Exception names have changed * Catch uncaught exceptions at the end when no tracing * Lint-like fixes R# with '#' will be ignored, and an empty message aborts the commit.
2020-05-12 rocky <rocky@dusytfeet.com>
@@ -2559,8 +2559,8 @@
xpython/__main__.py, xpython/byteop/byteop25.py,
xpython/execfile.py, xpython/pyobj.py, xpython/vm.py,
xpython/vmtrace.py: accurate f_lasti and f_lineno * Added YIELD event type in vmtrace * "return" returns returned
- value to trace program * *except" returns execption to trace
- program. * Have to back off later Python 3.x-isms like FileNotFoundError and anotation signatures.
+ value to trace program * *except" returns exception to trace
+ program. * Have to back off later Python 3.x-isms like FileNotFoundError and annotation signatures.
2020-05-10 rocky <rb@dustyfeet.com>
@@ -2587,7 +2587,7 @@
2020-05-08 rocky <rocky@dusytfeet.com>
- * Makefile, xpython/byteop/byteop25.py: Smal tweaks to logging and
+ * Makefile, xpython/byteop/byteop25.py: Small tweaks to logging and
Makefile
2020-05-08 rocky <rocky@dusytfeet.com>
@@ -2665,7 +2665,7 @@
2020-05-07 rocky <rocky@dusytfeet.com>
* xpython/byteop/byteop25.py, xpython/byteop/byteop32.py,
- xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/pyvm2.py:
+ xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/pyvm2.py:
Revise comprehension handling...
2020-05-07 rocky <rocky@dusytfeet.com>
@@ -2701,7 +2701,7 @@
2020-05-07 rocky <rocky@dusytfeet.com>
- * README.rst, xpython/byteop/byteop36.py: Add exmaple in README.rst
+ * README.rst, xpython/byteop/byteop36.py: Add example in README.rst
and .. tolerate built-in function creation failures
2020-05-07 rocky <rocky@dusytfeet.com>
@@ -2738,14 +2738,14 @@
xpython/byteop/byteop36.py: Remove "version" attribute in
functions... We needed that to figure out in byteops if we were cross-version
interpreting before we all byteops converted/moved to the byteops
- class. Now all converion is done, we can get the interpreted version from
+ class. Now all conversion is done, we can get the interpreted version from
the object or from self.vm.version
2020-05-06 rocky <rocky@dusytfeet.com>
* xpython/byteop/byteop25.py, xpython/byteop/byteop33.py,
- xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/pyvm2.py:
- Cleanup; print no-arg excpetions better
+ xpython/byteop/byteop36.py, xpython/pyobj.py, xpython/pyvm2.py:
+ Cleanup; print no-arg exceptions better
2020-05-06 rocky <rocky@dusytfeet.com>
@@ -2930,7 +2930,7 @@
2020-05-03 rocky <rocky@dusytfeet.com>
- * test/examples/test_map_unpack.py, xpython/byteop/byteop36.py:
+ * test/examples/test_map_unpack.py, xpython/byteop/byteop36.py:
Finish docstrings for new 3.6 opcodes
2020-05-03 rocky <rocky@dusytfeet.com>
@@ -2958,7 +2958,7 @@
* test/stdlib/.python-version, test/stdlib/2.7-exclude.sh,
test/stdlib/3.3-exclude.sh, test/stdlib/runtests.sh,
- xpython/byteop/byteop25.py, xpython/execfile.py, xpython/pyobj.py:
+ xpython/byteop/byteop25.py, xpython/execfile.py, xpython/pyobj.py:
Some bug fixes.
2020-05-03 rocky <rb@dustyfeet.com>
@@ -2986,7 +2986,7 @@
2020-05-03 rocky <rb@dustyfeet.com>
- * test/test_with.py, xpython/byteop/byteop35.py, xpython/pyvm2.py:
+ * test/test_with.py, xpython/byteop/byteop35.py, xpython/pyvm2.py:
Possibly fix some bugs in 3.5 WITH_CLEANUP* ... and 3.5 END_FINALLY. Investigate 3.5 END_FINALLY is different than before, right?
2020-05-03 rocky <rb@dustyfeet.com>
@@ -2995,8 +2995,8 @@
2020-05-03 rocky <rocky@dusytfeet.com>
- * test/test_basic_compat.py, test/test_compat.py, test/vmtest.py:
- Start testing cross-version compatability
+ * test/test_basic_compat.py, test/test_compat.py, test/vmtest.py:
+ Start testing cross-version compatibility
2020-05-03 rocky <rocky@dusytfeet.com>
@@ -3064,7 +3064,7 @@
2020-05-02 rocky <rocky@dusytfeet.com>
* ChangeLog, MANIFEST.in, NEWS.md, __pkginfo__.py,
- admin-tools/how-to-make-a-release.md, setup.py, xpython/version.py:
+ admin-tools/how-to-make-a-release.md, setup.py, xpython/version.py:
Get ready for release 1.0.1
2020-05-02 rocky <rocky@dusytfeet.com>
@@ -3092,7 +3092,7 @@
test/examples/test_at_context_manager_complete.py,
test/examples/test_at_context_manager_simplified.py,
test/test_functions.py, test/test_with.py, test/vmtest.py,
- xpython/__main__.py, xpython/byteop/byteop32.py, xpython/pyvm2.py:
+ xpython/__main__.py, xpython/byteop/byteop32.py, xpython/pyvm2.py:
Fix some 3.2 bugs and add testing
2020-05-02 rocky <rocky@dusytfeet.com>
@@ -3109,7 +3109,7 @@
2020-05-02 rocky <rocky@dusytfeet.com>
- * Makefile, xpython/byteop/byteop33.py, xpython/byteop/byteop35.py:
+ * Makefile, xpython/byteop/byteop33.py, xpython/byteop/byteop35.py:
Something weird happened... Some code in byteop3{3,5} got deleted. Reinstate that.
2020-05-02 rocky <rocky@dusytfeet.com>
@@ -3166,7 +3166,7 @@
admin-tools/pyenv-versions, test/examples/runtests.sh,
test/examples/test_continue_in_with.py, test/test_with.py,
xpython/byteop/byteop26.py, xpython/byteop/byteop33.py,
- xpython/byteop/byteop35.py, xpython/pyobj.py, xpython/pyvm2.py:
+ xpython/byteop/byteop35.py, xpython/pyobj.py, xpython/pyvm2.py:
split out another test. Administrivia Add much-needed cool check-versions script and runtests.sh
2020-05-01 rocky <rb@dustyfeet.com>
@@ -3211,18 +3211,18 @@
2020-05-01 rocky <rocky@dusytfeet.com>
- * tests/examples/test_simple_context_manager.py, tests/test_with.py:
+ * tests/examples/test_simple_context_manager.py, tests/test_with.py:
Split out "test_with"
2020-04-30 rocky <rocky@dusytfeet.com>
* README.rst, xpython/byteop/byteop26.py,
- xpython/byteop/byteop27.py, xpython/pyobj.py, xpython/pyvm2.py:
+ xpython/byteop/byteop27.py, xpython/pyobj.py, xpython/pyvm2.py:
Better execution trace info on an exception.
2020-04-30 rocky <rocky@dusytfeet.com>
- * __pkginfo__.py, setup.py, xpython/__main__.py, xpython/version.py:
+ * __pkginfo__.py, setup.py, xpython/__main__.py, xpython/version.py:
Convert to click, and packaging administrivia
2020-04-30 rocky <rocky@dusytfeet.com>
@@ -3241,7 +3241,7 @@
tests/test_functions.py, xpython/byteop/byteop26.py,
xpython/byteop/byteop27.py, xpython/byteop/byteop33.py,
xpython/byteop/byteop34.py, xpython/pyvm2.py: Fix MAKE_FUNCTION for
- Python 3.4... Split out anohter test into its own file. Pull out MAKE_FUNCTION
+ Python 3.4... Split out another test into its own file. Pull out MAKE_FUNCTION
from pyvm2.py
2020-04-30 rocky <rocky@dusytfeet.com>
@@ -3250,7 +3250,7 @@
tests/examples/test_attribute_access.py, tests/test_basic.py,
tests/vmtest.py, xpython/byteop/byteop26.py,
xpython/byteop/byteop27.py, xpython/byteop/byteop33.py,
- xpython/byteop/byteop34.py, xpython/execfile.py, xpython/pyvm2.py:
+ xpython/byteop/byteop34.py, xpython/execfile.py, xpython/pyvm2.py:
Start Handling 3.4 opcodes... Note: this isn't complete. building classes changes so we need to deal with that. Also
LOAD_CLASSDEREF isn't complete.
@@ -3327,7 +3327,7 @@
* .gitignore, tests/.gitignore, tests/examples/.gitignore,
tests/examples/create-bytecode.sh, tests/examples/test_slice.py,
- tests/test_basic.py, tests/test_basic_compat.py, tests/vmtest.py:
+ tests/test_basic.py, tests/test_basic_compat.py, tests/vmtest.py:
One more test put into a file... * vmtest.py: tweak separate line: show filename * create-bytecode.sh: script to create get compiled bytecode and add
to * test_basic_compat.py test_basic.py: move another test into a file
@@ -3368,7 +3368,7 @@
* tests/examples/.gitignore, tests/examples/compile-file.py,
tests/examples/test_decorator.py,
tests/examples/test_different_globals_may_have_different_builtins.p
- y, tests/examples/test_for.py, tests/examples/test_for_loop.py:
+ y, tests/examples/test_for.py, tests/examples/test_for_loop.py:
Start to put test programs in separate files... and save bytecode files. program to byte-compile file
2020-04-28 rocky <rocky@dusytfeet.com>
@@ -3460,7 +3460,7 @@
2014-08-19 Allison Kaptur <allison.kaptur@gmail.com>
- * byterun/pyobj.py, byterun/pyvm2.py, tests/test_functions.py:
+ * byterun/pyobj.py, byterun/pyvm2.py, tests/test_functions.py:
Implement YIELD_FROM with @paultag
2014-08-15 Allison Kaptur <allison.kaptur@gmail.com>
@@ -4080,4 +4080,3 @@
2013-01-13 Ned Batchelder <ned@nedbatchelder.com>
* Ignore stuff
-