[Patches] [Patch #101398] API doc changes (InPlace-API & And/Or/Xor fixes)

noreply@sourceforge.net noreply@sourceforge.net
Mon, 4 Sep 2000 04:25:22 -0700


Patch #101398 has been updated. 

Project: 
Category: documentation
Status: Open
Summary: API doc changes (InPlace-API & And/Or/Xor fixes)

Follow-Ups:

Date: 2000-Sep-02 10:08
By: twouters

Comment:
the API docs state that 'PyNumber_And' and 'PyNumber_Or' are equivalent to 'o1 and o2' and 'o1 or o2' respectively. This is wrong, they are equivalent to 'o1 & o2' and 'o1 | o2', respectively. I'm not sure whether | needs to be escaped or not, in TeX, so I escaped it just in case.


-------------------------------------------------------

Date: 2000-Sep-02 10:30
By: twouters

Comment:
Updated patch, which rewords the PyNumber_And, PyNumber_Or and PyNumber_Xor descriptions to make them slightly more obvious. (note: the use of ``'s and '''s is taken from the old descriptions, there might be a better \TeX{dingus} for it.)

-------------------------------------------------------

Date: 2000-Sep-04 04:25
By: twouters

Comment:
New version that also includes the docs for the new InPlace API calls. Changed patch summary accordingly. This markup was given a cursory test, and it builds proper .ps/.dvi files, but I'm not a TeX-warrior and there might be better ways.

I'm also still working on a new ref-section on augmented assignment, which I hope to finish before heading off to Italy tomorrow (but if I don't manage to finish it, I'll mail my almost-finished stuff, to python-dev or to Fred directly.) Tutorial will have to wait until I'm back or for someone else to do it :P


-------------------------------------------------------

-------------------------------------------------------
For more info, visit:

http://sourceforge.net/patch/?func=detailpatch&patch_id=101398&group_id=5470