[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. Also

[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 (Lib) files

Re: string find/replace

2010-12-01 Thread Donald O'Donnell
On Dec 1, 12:36 pm, Carlo ca...@somewhere.com wrote: Hello, I want the Python equivalent of the Perl expression: s/([a-z])([A-Z])/\1 \2/g In plain language: place a space between a lowercase and uppercase letter. I get lost in the RE module. Can someone help me? Thanks! This will also

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

2009-03-22 Thread Donald O'Donnell
New submission from Donald O'Donnell upwest...@gmail.com: 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 ver 3.01: line 5578 is if align == '': s/b if align == '': line 5580 is if align