Message173741
| Author | chris.jerdonek |
|---|---|
| Recipients | Inyeol.Lee, chris.jerdonek |
| Date | 2012-10-25.07:46:01 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1351151161.29.0.535003008928.issue16319@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I could be misinterpreting the documentation, but it looks to me like the examples given are behaving as documented:
parameter_list ::= (defparameter ",")*
( "*" [parameter] ("," defparameter)*
[, "**" parameter]
| "**" parameter
| defparameter [","] )
(from http://docs.python.org/dev/reference/compound_stmts.html#function-definitions )
The relevant clause in the above looks to be the following, which can't give rise to a trailing comma:
"*" [parameter] ("," defparameter)* [, "**" parameter] |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2012-10-25 07:46:01 | chris.jerdonek | set | recipients: + chris.jerdonek, Inyeol.Lee |
| 2012-10-25 07:46:01 | chris.jerdonek | set | messageid: <1351151161.29.0.535003008928.issue16319@psf.upfronthosting.co.za> |
| 2012-10-25 07:46:01 | chris.jerdonek | link | issue16319 messages |
| 2012-10-25 07:46:01 | chris.jerdonek | create | |