[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-06 Thread Ned Deily
Ned Deily added the comment: >>(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.) -- nosy: +ned.d

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-06 Thread Larry Hastings
Larry Hastings added the comment: ok. (I thought the change to not-automatically-getting-sphinx was deferred?) -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: 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. -

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-03 Thread Ethan Furman
Ethan Furman added the comment: 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. -- ___ Python tracker

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-03 Thread R. David Murray
R. David Murray added the comment: You have to install sphinx now. The doc build tools no longer fetch it from svn. -- nosy: +r.david.murray ___ Python tracker ___

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-03 Thread Ethan Furman
Ethan Furman added the comment: 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 -- ___ Python tracker

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-03 Thread Larry Hastings
Larry Hastings added the comment: Why can't you build the docs on your system? "make html" works for me every time--it even downloads the packages it needs. -- ___ Python tracker _

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-03 Thread Ethan Furman
New submission from Ethan Furman: 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. -- assignee: larry messages: 212670 nosy: ethan.furman, la