This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior
Type: behavior Stage: commit review
Components: Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: larry Nosy List: ethan.furman, larry, ned.deily, r.david.murray, vstinner
Priority: release blocker Keywords:

Created on 2014-03-03 20:49 by ethan.furman, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (8)
msg212670 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2014-03-03 20:49
Two minor code changes addressing the "more pythonic" comments.  Major doc enhancement addressing the functional API.  Not sure about the markup as I can no longer create the docs on my system.
msg212676 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2014-03-03 21:32
Why can't you build the docs on your system?  "make html" works for me every time--it even downloads the packages it needs.
msg212678 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2014-03-03 21:51
For the past couple weeks everytime I try I get:

sphinx-build -b html -d build/doctrees -D latex_paper_size=  . build/html 
make: sphinx-build: Command not found
make: *** [build] Error 127
msg212679 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-03 21:56
You have to install sphinx now.  The doc build tools no longer fetch it from svn.
msg212687 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2014-03-03 23:05
Ah, thanks!  Docs are built, fixed, and built again.

Larry, the two cherries to pick for this are:

b637064cc696: bulk of doc changes
54ab95407288: fixes for ReST markup

Thanks.
msg212715 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-03-04 11:14
Changeset b637064cc696 comes from issue #20653.

This changeset and this cherry-pick issue were discussed here:
https://mail.python.org/pipermail/python-dev/2014-February/132560.html

Antoine and Barry agree to cherry-pick b637064cc696 in Python 3.4.0.
msg212824 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2014-03-06 17:34
ok.

(I thought the change to not-automatically-getting-sphinx was deferred?)
msg212841 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-03-06 21:08
>>(I thought the change to not-automatically-getting-sphinx was deferred?)

(The not-automatically-getting-sphinx change is in the default branch but it has not been cherry-picked for 3.4.0 - and should not be, as agreed upon in Issue20661.)
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 65047
2014-03-06 21:08:22ned.deilysetnosy: + ned.deily
messages: + msg212841
2014-03-06 17:34:42larrysetstatus: open -> closed
resolution: fixed
messages: + msg212824
2014-03-04 11:14:43vstinnersetnosy: + vstinner
messages: + msg212715
2014-03-03 23:05:31ethan.furmansetmessages: + msg212687
2014-03-03 21:56:16r.david.murraysetnosy: + r.david.murray
messages: + msg212679
2014-03-03 21:51:27ethan.furmansetmessages: + msg212678
2014-03-03 21:32:00larrysetmessages: + msg212676
2014-03-03 20:49:42ethan.furmancreate