[issue47051] Windows v3.10.3 .chm file (in python310\doc) page headings are messed up and spread out over several lines. Also the font has changed from the former san serif font to a smaller and harde

2022-03-17 Thread Donald O'Donnell
Change by Donald O'Donnell : -- assignee: docs@python components: Documentation nosy: DonnieODonnell, docs@python priority: normal severity: normal status: open title: Windows v3.10.3 .chm file (in python310\doc) page headings are messed up and spread out over several lines. Als

[issue44248] copy.deepcopy calls objdect's __deepcopy__ with incorrect argument

2021-05-27 Thread Donald O'Donnell
New submission from Donald O'Donnell : In copy.py of Std Lib, line 153 is now: y = copier(memo) Should be: y = copier(x) The present version copies the `memo` dict rather than `x`, the object to be copied by it's __deepcopy__ method. -- components: Library (

[issue5534] Decimal __format__ reverses meaning of '<' and '>' alignment specs

2009-03-21 Thread Donald O'Donnell
New submission from Donald O'Donnell : decimal.py ver 2.6: line 5474 is "if align == '<':" s/b "if align == '>':" line 5476 is "if align == '>':" s/b "if align == '<':" decimal.py