[issue6801] symmetric_difference_update documentation fix

2009-08-30 Thread Georg Brandl
Georg Brandl added the comment: > Well, in that case I don't understand how it is different from > difference_update() ? It's different from difference_update because that takes multiple arguments. The operator form shows an equivalent and therefore shows how to write an equivalent of the metho

[issue6801] symmetric_difference_update documentation fix

2009-08-30 Thread Tarek Ziadé
Tarek Ziadé added the comment: Well, in that case I don't understand how it is different from difference_update() ? The doc says : set -= other | ... suggesting that you can pipe several sets with -=, exactly like what you can do with ^=. The same applies with |=. In other words, this whol

[issue6801] symmetric_difference_update documentation fix

2009-08-30 Thread Georg Brandl
Georg Brandl added the comment: Oops, that was a bit uncoordinated :) I saw the new bug report in my inbox, and decided to look at what might be wrong despite the somewhat meager description, and already saw the "fixed" version and fixed it again. Anyway. I think the unfixed, and now reverted,

[issue6801] symmetric_difference_update documentation fix

2009-08-30 Thread R. David Murray
R. David Murray added the comment: OK, so in r74578 Tarek added the pipe but didn't update this case, and in r74590 Georg deleted the pipe that Tarek added... -- nosy: +r.david.murray status: closed -> open ___ Python tracker

[issue6801] symmetric_difference_update documentation fix

2009-08-30 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r74590. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue6801] symmetric_difference_update documentation fix

2009-08-29 Thread Tarek Ziadé
New submission from Tarek Ziadé : the symmetric_difference_update also accepts | -- assignee: tarek components: Documentation messages: 92065 nosy: tarek severity: normal status: open title: symmetric_difference_update documentation fix ___ Python tra