-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathChangeLog
More file actions
842 lines (493 loc) · 24.7 KB
/
ChangeLog
File metadata and controls
842 lines (493 loc) · 24.7 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
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
2025-10-17 rocky <rb@dusytfeet.com>
* pyproject.toml, xasm/version.py: Get ready for release 1.2.2
2025-10-17 rocky <rb@dusytfeet.com>
* admin-tools/make-dist-3.6-3.10.sh,
admin-tools/make-dist-newest.sh,
admin-tools/pyenv-3.6-3.10-versions: More 3.6-3.10 versions
2025-10-17 rocky <rb@dusytfeet.com>
* README.rst, admin-tools/install-all-3.6-3.10.sh,
admin-tools/install-all-newest.sh, admin-tools/make-dist-newest.sh,
admin-tools/pyenv-newest-versions, pyproject.toml,
xasm/assemble.py, xasm/write_pyc.py, xasm/xasm_cli.py: Pass PyPy
status to write pyc. Correct pyc-xasm entry. And more.
2025-10-14 rocky <rb@dusytfeet.com>
* admin-tools/check-newest-versions.sh,
admin-tools/check-versions.sh, admin-tools/checkout_common.sh,
admin-tools/make-dist.sh: Administrivia
2025-10-14 rocky <rb@dusytfeet.com>
* admin-tools/checkout_common.sh: Administriva - cd'd to wrong
directory
2025-10-13 rocky <rb@dusytfeet.com>
* .github/workflows/ubuntu.yml, .github/workflows/windows.yml,
xasm/version.py: Bump version and adjust CI
2025-10-13 rocky <rb@dusytfeet.com>
* .gitignore, .pre-commit-config.yaml, ChangeLog,
ChangeLog-spell-corrected.diff, Makefile, NEWS.md, __pkginfo__.py,
pytest/test_assemble.py, pytest/test_write_pyc.py,
test/columnize.py, test/fn.py, test/gcd.py, test/run-test.py,
test/test_all.py, xasm/assemble.py, xasm/pyc_convert.py,
xasm/version.py, xasm/xasm_cli.py: Get ready for release 1.2.1
2025-10-13 rocky <rb@dusytfeet.com>
* README.rst, admin-tools/install-all-3.6-3.10.sh,
admin-tools/install-all-newest.sh,
admin-tools/make-dist-3.6-3.10.sh: Better package testing
2025-10-13 rocky <rb@dusytfeet.com>
* admin-tools/install-all-3.8-3.10.sh,
admin-tools/install-all-newest.sh,
admin-tools/make-dist-3.8-3.10.sh,
admin-tools/pyenv-3.6-3.10-versions: Packaging, yet again
2025-10-13 rocky <rb@dusytfeet.com>
* Makefile, admin-tools/merge-for-3.6.sh: Ever changing "standards"
2025-10-13 rocky <rb@dusytfeet.com>
* admin-tools/check-newest-versions.sh: Correct admin scripts
2025-10-13 rocky <rb@dusytfeet.com>
* README.rst, admin-tools/make-dist-newest.sh, pyproject.toml,
setup.py: Packaging
2025-10-13 rocky <rb@dusytfeet.com>
* admin-tools/check-3.6-3.10-versions.sh,
admin-tools/check-newest-versions.sh,
admin-tools/checkout_common.sh,
admin-tools/install-all-3.8-3.10.sh,
admin-tools/install-all-newest.sh,
admin-tools/make-dist-3.8-3.10.sh, admin-tools/make-dist-newest.sh,
admin-tools/merge-for-3.6.sh, admin-tools/pyenv-3.6-3.10-versions,
admin-tools/pyenv-newest-versions, admin-tools/setup-master.sh,
admin-tools/setup-python-3.6.sh, admin-tools/test-versions.sh: Admin
crap
2025-10-13 rocky <rb@dusytfeet.com>
* .github/workflows/{osx.yml => macos.yml},
.github/workflows/ubuntu.yml, .pre-commit-config.yaml,
requirements.txt, xasm/assemble.py: Misc fixes
2025-06-21 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Correct bug respecing create_code API Fixes #24
2025-02-18 rocky <rb@dusytfeet.com>
* requirements.txt: Make dependabot happy
2024-12-24 rocky <rb@dusytfeet.com>
* .pre-commit-config.yaml, requirements.txt: Make dependabot happy
2024-09-10 rocky <rb@dusytfeet.com>
* requirements.txt: Silenced dependabot
2024-07-03 rocky <rb@dusytfeet.com>
* .github/ISSUE_TEMPLATE/bug-report.md,
.github/ISSUE_TEMPLATE/config.yml,
.github/ISSUE_TEMPLATE/feature-request.md, HOW-TO-USE.rst,
README.rst: Correct spelling typos
2024-07-02 rocky <rb@dusytfeet.com>
* HOW-TO-USE.rst, README.rst: Update README.rst
2024-07-02 rocky <rb@dusytfeet.com>
* HOW-TO-USE.rst, xasm/assemble.py, xasm/pyc_convert.py: More
explicit comments and ... add ## comments, and document better module and method information
2024-06-23 rocky <rb@dusytfeet.com>
* xasm/assemble.py, xasm/pyc_convert.py: bug fixes... * decode_linotab() -> decode_lineno_tab_old to make it clear that
this routine works for version before 3.10 * last instruction can be RERAISE or RASE_VARARGS in addition to RETURN_VALUE * Avoid using asm.code.to_native() for now, since there are bugs
2024-06-23 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst Spell check and update information
2024-06-23 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2024-06-23 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2024-06-23 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2024-06-15 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Misc tweaks and bug fixes... * Handle numeric labels better * Adjust field name co_linetable for 3.10+ * Warn if duplicate line number seen and < 3.10
2024-06-04 rocky <rb@dusytfeet.com>
* .github/workflows/osx.yml, .github/workflows/ubuntu.yml,
.github/workflows/windows.yml: CI - need latest xdis for testing
2024-06-04 rocky <rb@dusytfeet.com>
* pytest/test_assemble.py, xasm/assemble.py: Go over EXTENDED_ARG
creation in bytecode
2024-06-03 rocky <rb@dusytfeet.com>
* xasm/assemble.py: remove unused import
2024-06-03 rocky <rb@dusytfeet.com>
* xasm/assemble.py, xasm/xasm_cli.py: Compute EXTENDED_ARG better;
fix a typo
2024-06-03 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Improve offset label handling and .. ignore EXTENDED_ARG
2024-06-03 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Fix two misfeatures... 1. If Python bytecode is not set, complain and exit 2. Detect and handle line numbers on instructions
2024-05-26 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Check that operand values are in range
2024-05-26 rocky <rb@dusytfeet.com>
* xasm/write_pyc.py, xasm/xasm_cli.py: Track and report errors in
return code better
2024-05-26 rocky <rb@dusytfeet.com>
* .editorconfig: Typo
2024-05-26 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Tweak missing return value error
2024-05-26 rocky <rb@dusytfeet.com>
* pytest/test_write_pyc.py: Skip a pytest on windows CI
2024-05-26 rocky <rb@dusytfeet.com>
* .github/workflows/windows.yml, __pkginfo__.py, requirements.txt,
setup.py: Another attempt to get CI actions working
2024-05-26 rocky <rb@dusytfeet.com>
* .github/workflows/osx.yml, .github/workflows/ubuntu.yml,
.github/workflows/windows.yml: Try Workflows actions
2024-05-26 rocky <rb@dusytfeet.com>
* test/TODO.md: Add a TODO
2024-05-26 rocky <rb@dusytfeet.com>
* test/tasm-3.10-bad.pyasm, test/tasm-3.10.pyasm, xasm/assemble.py:
Add a check for last instruction being a "return"
2024-05-22 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Offset in 3.10+ need to be divided by two
2024-05-20 rocky <rb@dusytfeet.com>
* xasm/xasm_cli.py: Tweak asm file path
2024-02-20 rocky <rb@dusytfeet.com>
* requirements.txt: Keep dependabot happy
2024-01-10 rocky <rb@dusytfeet.com>
* requirements.txt: Bump cryptography to silence Depedabot
2024-01-10 rocky <rb@dusytfeet.com>
* .pre-commit-config.yaml, xasm/assemble.py, xasm/pyc_convert.py,
xasm/xasm_cli.py: convert % to f-strings
2024-01-09 rocky <rb@dusytfeet.com>
* pytest/test_write_pyc.py, requirements.txt: Update requirements as
recommended by dependabot Also comment out a test where xdis marshal is broken.
2023-12-17 R. Bernstein <rocky@users.noreply.github.com>
* : Merge pull request #21 from rocky/lint Some lint found
2023-10-23 rocky <rb@dustyfeet.com>
* .gitignore, __pkginfo__.py, requirements.txt, xasm/.gitignore,
xasm/assemble.py, xasm/pyc_convert.py, xasm/xasm_cli.py: Misc lint
2023-09-18 rocky <rb@dusytfeet.com>
* xasm/assemble.py: version -> version_tuple fixes
2023-09-18 rocky <rb@dusytfeet.com>
* .gitignore, admin-tools/pyenv-newest-versions,
admin-tools/setup-master.sh, test/.gitignore: Bump testing versions
2022-12-02 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Pycharm lint
2022-12-02 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Add a more detailed assert message... about the header.
2022-12-02 rocky <rb@dusytfeet.com>
* xasm/version.py: Bump version to development version
2022-10-17 rocky <rb@dusytfeet.com>
* xasm/assemble.py, xasm/write_pyc.py: Remove debug statement. Fixes #17 Also, add msg when we can't dump a code object
2022-08-22 rocky <rb@dusytfeet.com>
* xasm/assemble.py, xasm/write_pyc.py: Fix a couple of small bugs
2022-06-16 rocky <rb@dusytfeet.com>
* xasm/assemble.py: Detect native code objects in constants
2022-04-02 R. Bernstein <rocky@users.noreply.github.com>
* : Merge pull request #15 from
Svenskithesource/Svenskithesource-patch-2 Fix empty append call
2022-03-05 R. Bernstein <rocky@users.noreply.github.com>
* : Merge pull request #13 from Svenskithesource/patch-1 Typo
2021-12-04 rocky <rb@dusytfeet.com>
* xasm/assemble.py: wrong variable python_version -> version Fixes #11
2021-11-07 rocky <rb@dusytfeet.com>
* ChangeLog, NEWS.md, admin-tools/check-versions.sh,
admin-tools/make-dist.sh, admin-tools/pyenv-versions, setup.cfg,
xasm/version.py: Get ready for release 1.2.0
2021-11-07 rocky <rocky@dusytfeet.com>
* __pkginfo__.py, admin-tools/pyenv-versions: Allow for Python 3.10
2021-11-07 rocky <rocky@dusytfeet.com>
* admin-tools/pyenv-versions, admin-tools/setup-master.sh:
Administrivia
2021-11-05 rocky <rocky@dusytfeet.com>
* : commit b0609501e91c7a91b01a62b2a2cb9d15fac3e500 Author: rocky
<rocky@dusytfeet.com> Date: Fri Nov 5 20:39:55 2021 -0400
2021-11-04 rocky <rocky@dusytfeet.com>
* __pkginfo__.py, xasm/assemble.py, xasm/write_pyc.py,
xasm/xasm_cli.py: Update to use Python xdis 6.02 A number of little bugs and usability features added. * Warn if bytecode is too small. * More informative error messages
2021-07-20 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Add FIXME note
2021-07-20 rocky <rb@dustyfeet.com>
* xasm/assemble.py: WIP - start adding .READ directive
2021-06-23 rocky <rocky@dusytfeet.com>
* xasm/version.py: Black shouldn't format version.py
2021-06-23 rocky <rocky@dusytfeet.com>
* .editorconfig, setup.cfg: Add some boilerplate config files setup.cfg: general configuration .editorconfig: tells editors how to
set up formatting
2021-06-23 rocky <rocky@dusytfeet.com>
* : commit ab72f12d3e2ad2d5a1319019165c9c792638db5e Author: rocky
<rocky@dusytfeet.com> Date: Wed Jun 23 02:00:32 2021 -0400
2021-03-16 rb@dustyfeet.conf <rocky>
* xasm/assemble.py: Small bug fixes
2021-03-16 R. Bernstein <rocky@users.noreply.github.com>
* README.rst: Update README.rst
2020-10-27 rocky <rocky@gnu.org>
* admin-tools/make-dist.sh: Remove 3.6 until we figure out what's
wrong
2020-10-27 rocky <rocky@gnu.org>
* ChangeLog, NEWS.md, __pkginfo__.py,
admin-tools/how-to-make-a-release.md, admin-tools/pyenv-versions,
setup.py, xasm/__init__.py, xasm/pyc_convert.py, xasm/version.py:
Get ready for release 1.1.1
2020-07-02 rocky <rocky@gnu.org>
* requirements-dev.txt: Was missing this
2020-06-08 rocky <rb@dustyfeet.com>
* README.rst: Note x-python.
2020-06-07 rocky <rocky@gnu.org>
* xasm/assemble.py, xasm/pyc_convert.py: Detect PyPy. Add SIP hash
field... Note brokenness for SIP and 3.8+ Fixes #4
2020-05-18 rocky <rocky@gnu.org>
* __pkginfo__.py, admin-tools/pyenv-versions, xasm/assemble.py,
xasm/misc.py, xasm/pyc_convert.py, xasm/write_pyc.py: Simplify
imports using xdis 4.6.0+
2020-05-09 rocky <rocky@gnu.org>
* xasm/pyc_convert.py: typo
2020-05-08 rocky <rocky@gnu.org>
* xasm/pyc_convert.py, xasm/version.py: Simplify xdis imports,
blacken some buffers... tweak version.py
2020-04-28 rocky <rocky@gnu.org>
* xasm/assemble.py, xasm/write_pyc.py: Bugs in cross-assembly
bytecode writing... Internal code type used is more correct - is for the right version. Use to_native() when it makes sense.
2020-04-26 rocky <rocky@gnu.org>
* ChangeLog, NEWS.md, __pkginfo__.py, admin-tools/pyenv-versions,
pytest/test_write_pyc.py, test/gcd-3.7.pyasm, test/gcd-3.8.pyasm,
xasm/version.py, xasm/xasm_cli.py: Get ready for release 1.1.0
2020-04-24 rocky <rocky@gnu.org>
* __pkginfo__.py, pytest/test_write_pyc.py, test/gcd-3.7.pyasm,
test/gcd-3.8.pyasm, xasm/write_pyc.py: Add 3.7 PEP 552 header for
3.7+ Fixes #3 Bump xdis version
2020-04-18 R. Bernstein <rocky@users.noreply.github.com>
* .github/FUNDING.yml: Create FUNDING.yml
2020-04-17 rocky <rb@dustyfeet.com>
* test/comp.py, xasm/assemble.py, xasm/write_pyc.py: Misc assembly
bug fixes: * Add 3.8+ posonlyargcount * More sensitive to writing pep pep552 bits and network order of
ints * note positional arguments in 3.6+
2020-04-17 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Track xdis changes to Code repr()
2020-04-17 rocky <rocky@gnu.org>
* Makefile, __pkginfo__.py, admin-tools/how-to-make-a-release.md,
admin-tools/pyenv-versions, pytest/.gitignore,
pytest/test_write_pyc.py, test/test_all.py, xasm/.gitignore,
xasm/assemble.py, xasm/misc.py, xasm/write_pyc.py, xasm/xasm_cli.py:
Revise for new xdis. Add Better write_pyc() fn
2019-11-06 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Ensure bytecode is in range
2019-10-19 rocky <rocky@gnu.org>
* xasm/assemble.py: Add an "assert" message
2019-10-19 rocky <rocky@gnu.org>
* ChangeLog, MANIFEST.in, Makefile, NEWS.md, README.rst,
__pkginfo__.py, admin-tools/check-versions.sh,
admin-tools/make-dist.sh, admin-tools/pyenv-versions, setup.py,
xasm/version.py: Release 1.0.0
2019-10-19 rocky <rocky@gnu.org>
* README.rst: Fix support versions link
2019-10-19 rocky <rocky@gnu.org>
* README.rst, __pkginfo__.py: Bump min xdis version. Update
README.rst
2019-05-25 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2019-05-25 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2019-05-25 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2019-05-25 R. Bernstein <rocky@users.noreply.github.com>
* README.rst: Update README.rst
2019-05-05 R. Bernstein <rocky@users.noreply.github.com>
* README.rst: Update README.rst
2019-05-05 rocky <rb@dustyfeet.com>
* README.rst, xasm/misc.py: Improve docs
2019-04-13 rocky <rb@dustyfeet.com>
* : commit 6d390b4b3fdbe5a43e00500ce50811d8cb91af03 Author: rocky
<rocky@gnu.org> Date: Fri Apr 5 16:29:27 2019 -0400
2019-04-05 rocky <rocky@gnu.org>
* __pkginfo__.py: Version hell
2018-05-25 rocky <rb@dustyfeet.com>
* xasm/misc.py: Allow Python 1.5 and 1.4 assembly ... but both are borked.
2018-05-25 rocky <rb@dustyfeet.com>
* .gitignore, test/multi-assign-2.7.pyasm, test/multi-assign.py,
test/multi-assign2-2.7.pyasm: More tests
2018-05-25 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/misc.py: Allow 1.4 and 1.5 assembly
2018-03-21 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2018-03-21 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2018-03-21 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2018-01-19 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-11-10 rocky <rb@dustyfeet.com>
* __pkginfo__.py, xasm/assemble.py: Code objects can be code2 or
code3
2017-11-09 rocky <rb@dustyfeet.com>
* test/comp.py, test/run-test.py: Small fixes
2017-10-05 rocky <rb@dustyfeet.com>
* __pkginfo__.py, xasm/assemble.py: Start handling code objects with
the same name <lambda> and <genexpr> are common situations, but users can also use
the same name nested in different inside different methods
2017-08-12 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-08-12 rocky <rb@dustyfeet.com>
* xasm/assemble.py: A slightly better exception message
2017-08-11 rocky <rb@dustyfeet.com>
* xasm/misc.py, xasm/pyc_convert.py: Fix writing Python 3.0..3.2
bytecode writing... Start a Python 3.3->3.2 bytecode converter. Not fully finished
though.
2017-08-09 rocky <rb@dustyfeet.com>
* __pkginfo__.py, xasm/assemble.py, xasm/pyc_convert.py: Slightly
better 32-33 conversion... and other slight improvements. More work is needed though
2017-08-08 rocky <rb@dustyfeet.com>
* : commit 6c7daa9bd31bc92a14f47bf27bb2602e58603944 Author: rocky
<rb@dustyfeet.com> Date: Tue Aug 8 20:42:40 2017 -0400
2017-08-08 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-08-08 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-08-08 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-08-08 rocky <rb@dustyfeet.com>
* README.rst, setup.py, xasm/cli.py, xasm/pyc_convert.py: Update
docs. Change the install command-line names
2017-08-08 rocky <rb@dustyfeet.com>
* README.rst: One more typo
2017-08-08 rocky <rb@dustyfeet.com>
* README.rst: Typos
2017-08-08 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/{convert26-27.py => pyc_convert.py}: Use
click and generalize
2017-08-08 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/convert26-27.py: labels and backpatches
need to be per function
2017-08-07 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/convert26-27.py: First 2.6->2.7 conversion
works
2017-08-07 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/convert26-27.py: Start Python 2.6-2.7
conversion tool
2017-07-20 rocky <rb@dustyfeet.com>
* Makefile, test/gcd-2.2.pyasm, test/gcd-2.3.pyasm,
test/gcd-2.4.pyasm, test/gcd-2.5.pyasm, test/gcd-2.7.pyasm,
test/gcd-3.5.pyasm, test/test_all.py: Add some sort of testing
2017-07-18 rocky <rb@dustyfeet.com>
* test/.gitignore, test/columnize.py, test/comp.py,
test/gcd-2.2.pyasm, test/gcd-2.3.pyasm, test/run-test.py,
test/tasm2.pyasm: misc fixes... columnize.py: make it per 2.7-compatible - remove backports.shutil test/run-test.py: preserve filename in .pyc
2017-07-16 rocky <rb@dustyfeet.com>
* : commit d4e2fc3a6ae3f56b80778a6a01273166ab404886 Author: R.
Bernstein <rocky@users.noreply.github.com> Date: Sat Jul 15
15:46:31 2017 -0400
2017-07-15 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-07-15 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-07-15 R. Bernstein <rocky@users.noreply.github.com>
* HOW-TO-USE.rst: Update HOW-TO-USE.rst
2017-07-15 rocky <rb@dustyfeet.com>
* __pkginfo__.py: Administrivia
2017-07-15 rocky <rb@dustyfeet.com>
* HOW-TO-USE.rst: Doc corrections
2017-07-15 rocky <rb@dustyfeet.com>
* HOW-TO-USE.rst: Doc fixes
2017-07-15 rocky <rb@dustyfeet.com>
* .gitignore, LICENSE.gpl2: Administrivia
2017-07-15 rocky <rb@dustyfeet.com>
* HOW-TO-USE.rst: Reformat for Rst
2017-07-14 rocky <rb@dustyfeet.com>
* MANIFEST.in, README.rst: Add link
2017-07-14 rocky <rb@dustyfeet.com>
* HOW-TO-USE.rst, __pkginfo__.py, xasm/version.py: First notes as to
how to use
2017-07-13 rocky <rb@dustyfeet.com>
* test/compile-file.py, test/run-test.py: Add a better run-test.py
routine
2017-07-13 rocky <rb@dustyfeet.com>
* README.rst, __pkginfo__.py, test/gcd-2.2.pyasm,
test/gcd-2.3.pyasm, test/gcd-2.4.pyasm, test/gcd-2.5.pyasm,
test/gcd-2.7.pyasm, test/gcd-3.5.pyasm, test/tasm-3.5.pyasm,
xasm/assemble.py, xasm/cli.py, xasm/misc.py: Mess of little
things... Better cli.py options testing: required and readable assembly path make sure path is nonzero Add pyasm for 2.2-2.5 and allow assembly to those
2017-07-11 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Handle EXTENDED_ARG ... For both 3.6 and before. FIXME: should change xasm to record
extended_arg stride
2017-07-11 rocky <rb@dustyfeet.com>
* test/.gitignore, test/fn-2.7.pyasm, xasm/assemble.py: Handle
opcodes with + in them. Thank you, Python!
2017-07-11 rocky <rb@dustyfeet.com>
* test/tasm-3.4.pyasm, xasm/assemble.py: Apparently cellvars are
freevars too... so don't add a freevar if it is already listed as a cellvar
2017-07-09 rocky <rb@dustyfeet.com>
* test/fn-3.4.pyasm, xasm/assemble.py: Use ast.eval_literal()
instead of eval()
2017-07-09 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Track free variables and line numbers
2017-07-09 rocky <rb@dustyfeet.com>
* test/.gitignore, test/Makefile, test/columnize.py,
test/compile-file.py, test/gcd-2.7.pyasm, test/gcd-3.3.pyasm,
test/gcd-3.4.pyasm, test/gcd-3.5.pyasm, test/gcd-3.6.pyasm,
test/tasm-3.6.pyasm, xasm/assemble.py: Use cellvars values compile-file.py: run after building pyc file test/columnize.py: a longer more rigorous test test/*.pyasm: start
deleting those that can be derived via compile_file and pydisasm
-asm test/Makefile: start and add a "clean" target
2017-07-08 rocky <rb@dustyfeet.com>
* __pkginfo__.py, test/gcd-2.7.pyasm, test/gcd-3.6.pyasm,
test/tasm-3.5.pyasm, test/tasm-3.6.pyasm, xasm/assemble.py,
xasm/misc.py: Python 3.6 now supported... Handle COMPARE_OP by symbol (==, <=, etc.) or without int value
Handle NAME and LOCAL ops by name or without int value Start a
common assembler error message routine Need xdis 3.5.0 or greater now
2017-07-07 rocky <rb@dustyfeet.com>
* test/gcd-3.5.pyasm, xasm/assemble.py: Handle LOCAL and NAME
operands ... NAME was buggy. Use recently-added xdis opcode sets
2017-07-07 rocky <rb@dustyfeet.com>
* test/gcd-3.5.pyasm: One more test
2017-07-07 rocky <rb@dustyfeet.com>
* README.rst, test/compile-file.py, test/fn-2.7.pyasm,
test/fn-3.4.pyasm, xasm/assemble.py, xasm/misc.py: Interpret
assembly constants and names in opcode.. and other cleanups.
2017-07-06 rocky <rb@dustyfeet.com>
* test/gcd-3.4.pyasm, xasm/assemble.py, xasm/cli.py: Improve cli,
reduce debug output... Remove duplicate offset 0 line number
2017-07-05 rocky <rb@dustyfeet.com>
* test/gcd-3.3.pyasm, test/gcd-3.4.pyasm, test/tasm-3.4.pyasm,
test/tasm2.pyasm: more test files
2017-07-05 rocky <rb@dustyfeet.com>
* test/compile-file.py, test/fn-2.7.pyasm, test/gcd-2.7.pyasm,
test/tasm.py, xasm/assemble.py, xasm/misc.py: Handle lnotab. More
Python version Compile-file does more. Clean up some test files
2017-07-05 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Correct Code3 argument order
2017-07-05 rocky <rb@dustyfeet.com>
* xasm/assemble.py: Decompile from Python 3.4 works... Change made was in xdis unmarshalling routine. Remove debug
statement.
2017-07-05 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/misc.py: Better Python 3 asm of Python 2 Not there yet, but closer. Clompliance needs fixing on the xdis
side.
2017-07-04 rocky <rb@dustyfeet.com>
* test/gcd-2.7.pyasm, xasm/assemble.py: More proper label handling All non-int labels are absolute Labels as an operand don't and shouldn't have the trailing ':'.
pydisasm doesn't add that. Start moving toward xdis's enhanced ability to work with Python code
more interchangeably between Python 2 and 3.
2017-07-03 rocky <rb@dustyfeet.com>
* test/fn-2.7.pyasm, test/fn-3.4.pyasm, test/fn.py,
test/gcd-2.7.pyasm, test/gcd.py, xasm/assemble.py, xasm/cli.py,
xasm/misc.py: Set function parameters better, 3.x tolerance... was wasn't setting locals, argcount, or varnames Slightly better 3.x
coverage, but still broken
2017-07-03 rocky <rb@dustyfeet.com>
* xasm/assemble.py, xasm/cli.py, xasm/misc.py: Better modularity:
code more separate from module
2017-07-01 rocky <rb@dustyfeet.com>
* test/tasm-2.5.pyasm, xasm/assemble.py: Start line number table
2017-07-01 rocky <rb@dustyfeet.com>
* .gitignore, test/fn-2.6.pyasm, xasm/assemble.py, xasm/cli.py,
xasm/misc.py, xasm/pythonfile.py: Handle multiple modules properly Pick up python version from file, --python-version is now optional
Use click
2017-07-01 rocky <rb@dustyfeet.com>
* test/compile-file.py, test/fn-2.6.pyasm, test/tasm-2.6.pyasm,
xasm/assemble.py, xasm/cli.py, xasm/pythonfile.py: Extract timestamp
from code
2017-06-28 rocky <rb@dustyfeet.com>
* test/tasm3-3.4.pyasm: A Python 3.4 test
2017-06-28 rocky <rb@dustyfeet.com>
* : commit 924a38064fe9e4d402a77e1231f0d58e263b69b5 Author: rocky
<rb@dustyfeet.com> Date: Wed Jun 28 17:23:45 2017 -0400
2017-06-28 rocky <rb@dustyfeet.com>
* README.rst: Typo
2017-06-28 rocky <rb@dustyfeet.com>
* README.rst, setup.py: Administrivia
2017-06-28 rocky <rb@dustyfeet.com>
* xasm/cli.py: Remove debug statement
2017-06-28 R. Bernstein <rocky@users.noreply.github.com>
* README.rst: Update README.rst
2017-06-28 R. Bernstein <rocky@users.noreply.github.com>
* README.rst: Update README.rst
2017-06-28 rocky <rb@dustyfeet.com>
* README.rst: Update doc
2017-06-27 rocky <rb@dustyfeet.com>
* .gitignore, README.rst, __pkginfo__.py, setup.py, tasm2.pyasm,
test/fn-2.6.pyasm, test/fn.py, test/tasm-2.6.pyasm, tasm.pyasm =>
test/tasm-2.7.pyasm, tasm.py => test/tasm.py, xasm.py,
xasm/__init__.py, xasm/assemble.py, xasm/cli.py,
xasm/pythonfile.py, xasm/version.py: Python setupize
2017-06-27 rocky <rb@dustyfeet.com>
* tasm.pyasm, xasm.py: Turn into a CLI
2017-06-26 rocky <rb@dustyfeet.com>
* .gitignore, tasm.py, tasm.pyasm, tasm2.pyasm, xasm.py: Assemble
class, instruction encoding
2017-06-26 rocky <rb@dustyfeet.com>
* Assembler first step