[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 the font has changed from the former 
san serif font to a smaller and harder to read serif font.
type: behavior
versions: Python 3.10

___
Python tracker 
<https://bugs.python.org/issue47051>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: diff.txt
messages: 394558
nosy: DonnieODonnell
priority: normal
severity: normal
status: open
title: copy.deepcopy calls objdect's __deepcopy__ with incorrect argument
type: behavior
Added file: https://bugs.python.org/file50068/diff.txt

___
Python tracker 
<https://bugs.python.org/issue44248>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 ver 3.01:
line 5578 is "if align == '<':"  s/b  "if align == '>':"
line 5580 is "if align == '>':"  s/b  "if align == '<':"

--
components: Library (Lib)
messages: 83958
nosy: donodonnell
severity: normal
status: open
title: Decimal __format__ reverses meaning of '<' and '>' alignment specs
type: behavior
versions: Python 2.6, Python 2.7, Python 3.0, Python 3.1

___
Python tracker 
<http://bugs.python.org/issue5534>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com