[issue36327] Remove EOLed Py34 from "Status of Python branches"

2019-03-17 Thread Christian Clauss
New submission from Christian Clauss : Remove Python 3.4 https://devguide.python.org/#branchstatus Add Python 3.4 https://devguide.python.org/devcycle/#end-of-life-branches -- assignee: docs@python components: Documentation messages: 338131 nosy: cclauss, docs@python priority: normal

[issue7850] platform.system() should be macosx instead of Darwin on OSX

2014-05-04 Thread Christian Clauss
Christian Clauss added the comment: assert sys.platform == platform.system().lower() Should that always be True? It is on Mac OS X but... On iOS (Pythonista): sys.platform == 'unknown' platform.system() == 'Darwin' https://docs.python.org/2/library/sys.html#sys.platform should be updated

[issue20969] Author of EPUB version of Python docs is set to Unknown instead of PSF

2014-04-04 Thread Christian Clauss
Christian Clauss added the comment: Makefile and make.bat in https://github.com/python/pythondotorg/blob/master/docs are NOT the correct files to modify. It is unclear to where the correct files are. -- ___ Python tracker rep...@bugs.python.org

[issue20969] Author of EPUB version of Python docs is set to Unknown instead of PSF

2014-03-18 Thread Christian Clauss
New submission from Christian Clauss: http://docs.python.org/3/download.html has an EPUB version of the Python docs but the Author of the document is set to Unknown so this text appears on the cover page and is repeated on the top of every other page throughout the document (in the iBooks app

[issue20838] Documents disagree about release state of Python 3.3.5

2014-03-02 Thread Christian Clauss
New submission from Christian Clauss: http://python.org/download/releases/3.3.5 says that 3.3.5rc1 is current but http://docs.python.org/3.3/whatsnew/changelog.html says that 3.3.5rc2 is current and http://legacy.python.org/dev/peps/pep-0398/#id5 says that 3.3.5 should have been released two

[issue20838] Documents disagree about release state of Python 3.3.5

2014-03-02 Thread Christian Clauss
Changes by Christian Clauss ccla...@bluewin.ch: -- nosy: +georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20838 ___ ___ Python-bugs

[issue14587] Certain diacritical marks can and should be capitalized... e.g. ü -- Ü

2012-04-15 Thread Christian Clauss
New submission from Christian Clauss ccla...@bluewin.ch: BUGS: certain diacritical marks can and should be capitalized... str.upper() does not .replace('à', 'À').replace('ä', 'Ä').replace('è', 'È').replace('é', 'É').replace('ö', 'Ö').replace('ü', 'Ü'), etc. str.lower() does not .replace

[issue14587] Certain diacritical marks can and should be capitalized... e.g. ü -- Ü

2012-04-15 Thread Christian Clauss
Christian Clauss ccla...@bluewin.ch added the comment: On Apr 15, 2012, at 4:43 PM, R. David Murray wrote: R. David Murray rdmur...@bitdance.com added the comment: It works fine if you use unicode. -- nosy: +r.david.murray resolution: - invalid stage: - committed/rejected