Re: [Django] #11337: Possible missing comma in Tutorial Part 1 (but the interpreter is the final authority)

2009-06-17 Thread Django
#11337: Possible missing comma in Tutorial Part 1 (but the interpreter is the 
final
authority)
+---
  Reporter:  thiggins   | Owner:  nobody
Status:  closed | Milestone:
 Component:  Documentation  |   Version:  1.0   
Resolution:  invalid|  Keywords:  missing, comma, syntax
 Stage:  Unreviewed | Has_patch:  0 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by Alex):

  * status:  new => closed
  * needs_better_patch:  => 0
  * resolution:  => invalid
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 A trailing comma is only necessary for a single item tuple, thus the
 current code works fine.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #11337: Possible missing comma in Tutorial Part 1 (but the interpreter is the final authority)

2009-06-17 Thread Django
#11337: Possible missing comma in Tutorial Part 1 (but the interpreter is the 
final
authority)
+---
 Reporter:  thiggins|   Owner:  nobody
   Status:  new |   Milestone:
Component:  Documentation   | Version:  1.0   
 Keywords:  missing, comma, syntax  |   Stage:  Unreviewed
Has_patch:  0   |  
+---
 This is what we have:

 {{{

 INSTALLED_APPS = (

 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'mysite.polls'

 )

 }}}

 I'm expecting, with a trailing comma, the following:
 {{{

 INSTALLED_APPS = (

 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'mysite.polls',

 )

 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---