Re: [Django] #26706: Reverse many to one and forward many to many managers's prefetch object cache should be cleared on clear().

2016-06-08 Thread Django
#26706: Reverse many to one and forward many to many managers's prefetch object
cache should be cleared on clear().
-+-
 Reporter:  cosmosgenius |Owner:  yoongkang
 Type:  Bug  |   Status:  assigned
Component:  Database layer   |  Version:  master
  (models, ORM)  |
 Severity:  Normal   |   Resolution:
 Keywords:  manytomany m2m   | Triage Stage:  Ready for
  clear  |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by timgraham):

 [https://groups.google.com/d/topic/django-
 developers/ejOpJ_r7tv8/discussion django-developers thread]

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/070.e6b2dd743e280e7b2ae1c07288598185%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26524: Change foreign key id list_display reference to display only the id

2016-06-08 Thread Django
#26524: Change foreign key id list_display reference to display only the id
-+-
 Reporter:  cristianocca |Owner:  nobody
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  contrib.admin|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  admin list_display   | Triage Stage:  Accepted
  changelist |
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In f6681393d3f53a67b4e0645e8d02f95579d8ae2d:

 Fixed #26524 -- Made a foreign key id reference in ModelAdmin.list_display
 display the id.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/070.12f7d8ec998e0e067965b683bea39aeb%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26731: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#26731: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  dhobbs |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--

Comment (by timgraham):

 So the broken code is
 `self.stdout.write('{}'.format(possibly_unicode_string_from_db))` without
 `unicode_literals`?

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.4b953146c96d08cbf70aa345b43e1dbf%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #2361: QuerySet.filter(m2mfield__isnull=False) may return duplicates

2016-06-08 Thread Django
#2361: QuerySet.filter(m2mfield__isnull=False) may return duplicates
-+-
 Reporter:  daniel.tietze@…  |Owner:  adrian
 Type:  Bug  |   Status:  new
Component:  Database layer   |  Version:  master
  (models, ORM)  |
 Severity:  normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * Attachment "2361-test.diff" added.


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/081.2498959164be9404646e435ec83ce626%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #2361: QuerySet.filter(m2mfield__isnull=False) may return duplicates (was: Filtering on count of ManyToManyField)

2016-06-08 Thread Django
#2361: QuerySet.filter(m2mfield__isnull=False) may return duplicates
-+-
 Reporter:  daniel.tietze@…  |Owner:  adrian
 Type:  Bug  |   Status:  new
Component:  Database layer   |  Version:  master
  (models, ORM)  |
 Severity:  normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * stage:  Unreviewed => Accepted
 * type:  defect => Bug


Comment:

 I'm not positive this can be fixed and shouldn't just be solved by using
 `.distinct()` but if that's the case, maybe the documentation could be
 clarified.

 I'm attaching a test which currently passes but demonstrates that
 duplicates are returned in the results.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/081.c9758772d36ababc29bfc2af703d5e29%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26729: TabularInline not respecting form's custom label and help text if set in form's __init__ method

2016-06-08 Thread Django
#26729: TabularInline not respecting form's custom label and help text if set in
form's __init__ method
---+
 Reporter:  nrogers64  |Owner:  nobody
 Type:  Bug|   Status:  new
Component:  contrib.admin  |  Version:  1.9
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Accepted
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+
Changes (by timgraham):

 * needs_docs:   => 0
 * needs_better_patch:   => 0
 * component:  Uncategorized => contrib.admin
 * needs_tests:   => 0
 * stage:  Unreviewed => Accepted


Comment:

 Seems reasonable, although I haven't looked into what might be involved in
 solving it.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.3106d54ae6e979d087faf0d616b9d116%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26732: OperationalError target lists can have at most 1664 entries

2016-06-08 Thread Django
#26732: OperationalError target lists can have at most 1664 entries
-+-
 Reporter:  OscaRoa  |Owner:  nobody
 Type:  Bug  |   Status:  closed
Component:  Database layer   |  Version:  1.9
  (models, ORM)  |
 Severity:  Normal   |   Resolution:  needsinfo
 Keywords:  postgres, admin, | Triage Stage:
  ORM|  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

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


Comment:

 You need to include steps to reproduce the problem.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.6301870a8141b69687a437ef5606d3fe%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26732: OperationalError target lists can have at most 1664 entries

2016-06-08 Thread Django
#26732: OperationalError target lists can have at most 1664 entries
--+
 Reporter:  OscaRoa   |  Owner:  nobody
 Type:  Bug   | Status:  new
Component:  Database layer (models, ORM)  |Version:  1.9
 Severity:  Normal|   Keywords:  postgres,
  |  admin, ORM
 Triage Stage:  Unreviewed|  Has patch:  0
Easy pickings:  0 |  UI/UX:  0
--+
 I have one model that has 4 ForeignKey fields and its admin class throws
 this error, I know it's Postgres related, but i haven't figured it out how
 to solve it yet.

 Also I'm not overriding any method in the admin class.

 Thanks in advance.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/050.dcd8a64b0d5b4a4f3ccc887cec5f3c35%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26666: assertRedirects gives unhelpful error message expected URL is external

2016-06-08 Thread Django
#2: assertRedirects gives unhelpful error message expected URL is external
-+-
 Reporter:  inglesp  |Owner:
 Type:   |  tobiasmcnulty
  Cleanup/optimization   |   Status:  new
Component:  Testing framework|  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by phildini):

 As a native speaker I took a look over the docs, and they make a lot of
 sense minus one potentially confusing bit. I left a comment on the PR.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.1aa9ede6d8b8b9da67c79e4922f9f92c%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26705: DjangoTranslation instance has no attribute 'plural'

2016-06-08 Thread Django
#26705: DjangoTranslation instance has no attribute 'plural'
--+
 Reporter:  theju |Owner:  nobody
 Type:  Bug   |   Status:  closed
Component:  Internationalization  |  Version:  master
 Severity:  Normal|   Resolution:  fixed
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by Tim Graham ):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"c8d2120b06e1b82cb0db896aa0f9767b2f14256c" c8d2120b]:
 {{{
 #!CommitTicketReference repository=""
 revision="c8d2120b06e1b82cb0db896aa0f9767b2f14256c"
 Fixed #26705 -- Fixed plural versions of languages not supported by
 Django.
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/063.3ee51f77333eabdf3ce2a6018fd3e7cc%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26731: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#26731: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  dhobbs |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--

Comment (by dhobbs):

 The string came from the db. The actual error came from
 django/core/management/base.py", line 111, in write

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.d6aab1a8f05e3ceacae04a35aa0b0a26%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26677: Run i18n tests on disposable FS tree instead of source code

2016-06-08 Thread Django
#26677: Run i18n tests on disposable FS tree instead of source code
-+-
 Reporter:  ramiro   |Owner:  ramiro
 Type:   |   Status:  assigned
  Cleanup/optimization   |
Component:   |  Version:  master
  Internationalization   |
 Severity:  Normal   |   Resolution:
 Keywords:  tests isolation  | Triage Stage:  Ready for
  i18n serializemixin unit unittest  |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * stage:  Accepted => Ready for checkin


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.97f3b2972be0afd63e15b057374e5c81%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #21933: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#21933: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  synotna|Owner:  nobody
 Type:  Uncategorized  |   Status:  closed
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:  invalid
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--

Comment (by timgraham):

 The follow up ticket is #26731.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.0c4d706a7b91d13e6b5d2496b3c39fbe%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26731: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#26731: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  dhobbs |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--

Comment (by timgraham):

 How do you end up with a situation where you cast a unicode string with
 non-ASCII characters to bytes?

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.1845a1f3abd6fc82f3863803ca23d50f%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26731: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#26731: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  dhobbs |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by dhobbs):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


Old description:

> In a management command in Python 2.7, if you include unicode characters
> when writing to stdout (with self.stdout.write) you will get a
> UnicodeDecodeError
>
> {{{
> # coding=utf-8
> from __future__ import absolute_import, unicode_literals
>
> import sys
>
> import pytest
> from django.core.management.base import OutputWrapper
> from django.utils.encoding import smart_bytes
>

> def test_bad_unicode_case_names():
> bad_name = smart_bytes(u'£')
> ow = OutputWrapper(sys.stdout)
> with pytest.raises(UnicodeDecodeError):
> ow.write(bad_name)
> }}}

New description:

 In a management command in Python 2.7, if you include unicode characters
 when writing to stdout (with self.stdout.write) you will get a
 UnicodeDecodeError

 {{{
 # coding=utf-8
 from __future__ import absolute_import, unicode_literals

 import sys

 import pytest
 from django.core.management.base import OutputWrapper
 from django.utils.encoding import smart_bytes


 def test_bad_unicode_names():
 bad_name = smart_bytes(u'£')
 ow = OutputWrapper(sys.stdout)
 with pytest.raises(UnicodeDecodeError):
 ow.write(bad_name)
 }}}

--

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.5c8ac3ad69c2762fe450d18ad120dc26%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26731: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#26731: UnicodeDecodeError when writing unicode to stdout of management command
---+
 Reporter:  dhobbs |  Owner:  nobody
 Type:  Uncategorized  | Status:  new
Component:  Uncategorized  |Version:  1.8
 Severity:  Normal |   Keywords:
 Triage Stage:  Unreviewed |  Has patch:  0
Easy pickings:  0  |  UI/UX:  0
---+
 In a management command in Python 2.7, if you include unicode characters
 when writing to stdout (with self.stdout.write) you will get a
 UnicodeDecodeError

 {{{
 # coding=utf-8
 from __future__ import absolute_import, unicode_literals

 import sys

 import pytest
 from django.core.management.base import OutputWrapper
 from django.utils.encoding import smart_bytes


 def test_bad_unicode_case_names():
 bad_name = smart_bytes(u'£')
 ow = OutputWrapper(sys.stdout)
 with pytest.raises(UnicodeDecodeError):
 ow.write(bad_name)
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/049.caa756b730dfe6ccd009954a8f0ef5f1%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26290: Pagination module should warn about unordered query set

2016-06-08 Thread Django
#26290: Pagination module should warn about unordered query set
-+-
 Reporter:  kartikanand  |Owner:  Tim
 Type:   |  Graham 
  Cleanup/optimization   |   Status:  closed
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  pagination   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Tim Graham ):

 * owner:   => Tim Graham 
 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"c4980e28e57f385d8ffed5e32ce373e52ce61049" c4980e28]:
 {{{
 #!CommitTicketReference repository=""
 revision="c4980e28e57f385d8ffed5e32ce373e52ce61049"
 Fixed #26290 -- Warned that paginating an unordered QuerySet may result in
 inconsistent results.
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/069.7e3e7fcc80cba3e86582e619769cf52e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #21933: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#21933: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  synotna|Owner:  nobody
 Type:  Uncategorized  |   Status:  closed
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:  invalid
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by dhobbs):

 * status:  new => closed
 * resolution:   => invalid


Comment:

 My bad - the issue does exist, but the example code here doesn't properly
 demonstrate it.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.d0b1b32a100745128045c28beb51e6cd%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #21933: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#21933: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  synotna|Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--

Comment (by dhobbs):

 Updated code as per the comment - this issue still exists.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.c4230b89fcf9ec8513524362589bd135%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #21933: UnicodeDecodeError when writing unicode to stdout of management command

2016-06-08 Thread Django
#21933: UnicodeDecodeError when writing unicode to stdout of management command
---+--
 Reporter:  synotna|Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.8
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  0  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by dhobbs):

 * status:  closed => new
 * version:  1.6 => 1.8
 * resolution:  invalid =>


Old description:

> In a management command, if you include unicode characters when writing
> to stdout (with self.stdout.write) you will get a UnicodeDecodeError
>
> This happens even if the system locale is utf-8, and self.stdout.encoding
> is utf-8, and you .decode(self.stdout.encoding,'replace')
>
> A workaround is to always .decode() to ascii, and if that is what should
> be done it should be documented at
> https://docs.djangoproject.com/en/dev/howto/custom-management-commands/
>

> /myapp/management/commands/unicode_test.py
> {{{
> # -*- coding: utf-8 -*-
> from django.core.management.base import BaseCommand
>
> class Command(BaseCommand):
> args = ''
> help = 'Do something'
>
> def handle(self, *args, **options):
> output = 'Σάββα▒^▒ο'
> self.stdout.write('Output: {}'.format(output))
> }}}
>
> {{{
> Traceback (most recent call last):
>   File "manage.py", line 10, in 
> execute_from_command_line(sys.argv)
>   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
> /site-packages/django/core/management/__init__.py", line 399, in
> execute_from_command_line
> utility.execute()
>   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
> /site-packages/django/core/management/__init__.py", line 392, in execute
> self.fetch_command(subcommand).run_from_argv(self.argv)
>   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
> /site-packages/django/core/management/base.py", line 242, in
> run_from_argv
> self.execute(*args, **options.__dict__)
>   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
> /site-packages/django/core/management/base.py", line 285, in execute
> output = self.handle(*args, **options)
>   File "/home/tech/esldj/all-in-
> one/go4/management/commands/unicode_test.py", line 10, in handle
> self.stdout.write('Output: {}'.format(output))
>   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
> /site-packages/django/core/management/base.py", line 65, in write
> if ending and not msg.endswith(ending):
> }}}

New description:

 In a management command, if you include unicode characters when writing to
 stdout (with self.stdout.write) you will get a UnicodeDecodeError

 This happens even if the system locale is utf-8, and self.stdout.encoding
 is utf-8, and you .decode(self.stdout.encoding,'replace')

 A workaround is to always .decode() to ascii, and if that is what should
 be done it should be documented at
 https://docs.djangoproject.com/en/dev/howto/custom-management-commands/


 /myapp/management/commands/unicode_test.py
 {{{
 # -*- coding: utf-8 -*-
 from django.core.management.base import BaseCommand

 class Command(BaseCommand):
 args = ''
 help = 'Do something'

 def handle(self, *args, **options):
 output = u'Σάββα▒^▒ο'
 self.stdout.write('Output: {}'.format(output))
 }}}

 {{{
 Traceback (most recent call last):
   File "manage.py", line 10, in 
 execute_from_command_line(sys.argv)
   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
 /site-packages/django/core/management/__init__.py", line 399, in
 execute_from_command_line
 utility.execute()
   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
 /site-packages/django/core/management/__init__.py", line 392, in execute
 self.fetch_command(subcommand).run_from_argv(self.argv)
   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
 /site-packages/django/core/management/base.py", line 242, in run_from_argv
 self.execute(*args, **options.__dict__)
   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
 /site-packages/django/core/management/base.py", line 285, in execute
 output = self.handle(*args, **options)
   File "/home/tech/esldj/all-in-
 one/go4/management/commands/unicode_test.py", line 10, in handle
 self.stdout.write('Output: {}'.format(output))
   File "/home/tech/.pyenv/versions/esldj-all-in-one-2.7.6/lib/python2.7
 /site-packages/django/core/management/base.py", line 65, in write
 if ending and not msg.endswith(ending):
 }}}

--

--
Tic

Re: [Django] #26730: Make AutoField consistent between postgresql and mysql

2016-06-08 Thread Django
#26730: Make AutoField consistent between postgresql and mysql
-+-
 Reporter:  hellerve |Owner:  nobody
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Database layer   |  Version:  1.9
  (models, ORM)  |
 Severity:  Normal   |   Resolution:  duplicate
 Keywords:   | Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by MarkusH):

 FTR, I took a look at #56 during the PyCon sprints. The only sensible way
 to implement it is IMO a `PositiveAutoField`.

 The primary key column on PostgreSQL is an `integer` (-2147483648 to
 +2147483647) and the related sequence a `bigint` (-9223372036854775808 to
 +9223372036854775807) with min_value=1, max_value=9223372036854775807.
 https://www.postgresql.org/docs/9.5/static/datatype-numeric.html

 SQLite doesn't allow unsigned integers for PK columns.

 MySQL supports `integer UNSIGNED` for PK, but that's not backwards
 compatible to the existing code base.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/066.f5c816e274743859964754ef84a3eaf8%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #21292: A how-to or tutorial document for using authentication views and forms is needed

2016-06-08 Thread Django
#21292: A how-to or tutorial document for using authentication views and forms 
is
needed
---+
 Reporter:  EvilDMP|Owner:
 Type:  New feature|   Status:  new
Component:  Documentation  |  Version:  master
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Accepted
Has patch:  0  |  Needs documentation:  1
  Needs tests:  0  |  Patch needs improvement:  1
Easy pickings:  0  |UI/UX:  0
---+
Changes (by harisibrahimkv):

 * owner:  harisibrahimkv =>
 * status:  assigned => new


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.bf2ad4cb00d0c5c5b110388cdd41d58f%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26730: Make AutoField consistent between postgresql and mysql

2016-06-08 Thread Django
#26730: Make AutoField consistent between postgresql and mysql
-+-
 Reporter:  hellerve |Owner:  nobody
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Database layer   |  Version:  1.9
  (models, ORM)  |
 Severity:  Normal   |   Resolution:  duplicate
 Keywords:   | Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  new => closed
 * needs_better_patch:   => 0
 * component:  Uncategorized => Database layer (models, ORM)
 * needs_tests:   => 0
 * type:  Uncategorized => Cleanup/optimization
 * needs_docs:   => 0
 * resolution:   => duplicate


Comment:

 Duplicate of #56

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/066.4f9d603e2138b6a7d4e707ff5c38d068%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26730: Make AutoField consistent between postgresql and mysql

2016-06-08 Thread Django
#26730: Make AutoField consistent between postgresql and mysql
---+
 Reporter:  hellerve   |  Owner:  nobody
 Type:  Uncategorized  | Status:  new
Component:  Uncategorized  |Version:  1.9
 Severity:  Normal |   Keywords:
 Triage Stage:  Unreviewed |  Has patch:  0
Easy pickings:  0  |  UI/UX:  0
---+
 '''The problem'''
 Currently, (Big)*AutoField becomes an `integer AUTO_INCREMENT` field in
 MySQL whereas it becomes a `serial` in PostgreSQL (which is a positive
 integer).

 '''The resolution?'''
 Update the MySQL version to use the `serial` datatype (which is just a
 macro for `bigint unsigned not null auto_increment unique`).

 '''Caveats'''
 The MySQL serial datatype might introduce too many unwanted restrictions.
 If the community thinks this might break too much code, I would suggest to
 at least make the MySQL version unsigned too, to increase the consistency
 between the DB adapters.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/051.4ad3f04bc34bda77e3fe0134c152b85f%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #4548: Add a username hint for password managers to admin's change_password form. (was: create user, typo password, get "confirm pw change" dialog)

2016-06-08 Thread Django
#4548: Add a username hint for password managers to admin's change_password 
form.
-+-
 Reporter:  Carl Karsten |Owner:  adrian
 |
 Type:   |   Status:  new
  Cleanup/optimization   |
Component:  contrib.admin|  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * needs_better_patch:  0 => 1
 * keywords:  password =>
 * has_patch:  0 => 1
 * type:  Uncategorized => Cleanup/optimization
 * stage:  Unreviewed => Accepted


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/095.84eed0d56d6614d2284c3708369666d4%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26600: map says a queryset is not iterable

2016-06-08 Thread Django
#26600: map says a queryset is not iterable
-+-
 Reporter:  ihucos   |Owner:  nobody
 Type:  Bug  |   Status:  closed
Component:  Database layer   |  Version:  1.8
  (models, ORM)  |
 Severity:  Normal   |   Resolution:  needsinfo
 Keywords:  queryset iterator| Triage Stage:
  map|  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by ihucos):

 We got where it comes from.
 This exception occurs after Heroku times out the request, but apparently
 it does not kill it: https://devcenter.heroku.com/articles/request-timeout

 So this happens in some funny Heroku environment that I really can't
 reproduce.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.94c57e15a4aa12e382fb6f712f02370c%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26721: Document redirecting dumpdata output may result in incorrect encoding in Windows PowerShell (was: "loaddata" can not load data generated by "dumpdata" due to encoding issues)

2016-06-08 Thread Django
#26721: Document redirecting dumpdata output may result in incorrect encoding in
Windows PowerShell
--+
 Reporter:  OBu   |Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  new
Component:  Documentation |  Version:  1.9
 Severity:  Normal|   Resolution:
 Keywords:  dumpdata loaddata | Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * component:  Core (Serialization) => Documentation
 * stage:  Unreviewed => Accepted
 * type:  Bug => Cleanup/optimization


Comment:

 I'm not knowledgeable about Windows to confirm, but assuming some can
 confirm it, a documentation note seems okay.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/061.3428b58a1ab74cae9f69f50bc47130ea%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26656: Add timedelta support to DjangoJSONEncoder

2016-06-08 Thread Django
#26656: Add timedelta support to DjangoJSONEncoder
--+
 Reporter:  willhardy |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Serialization)  |  Version:  1.9
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_better_patch:  0 => 1
 * stage:  Ready for checkin => Accepted


Comment:

 Now that #26704 is committed, we can update those docs for these changes.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.49dfd26a5f085a52cb34cdec03fc1347%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #4548: create user, typo password, get "confirm pw change" dialog

2016-06-08 Thread Django
#4548: create user, typo password, get "confirm pw change" dialog
-+-
 Reporter:  Carl Karsten |Owner:  adrian
 |
 Type:  Uncategorized|   Status:  new
Component:  contrib.admin|  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  password | Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by sliverc):

 * status:  closed => new
 * resolution:  worksforme =>


Comment:

 I have encountered this issue as well and found an easy fix.

 See pull request https://github.com/django/django/pull/6745

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/095.528dc253418103796ffd2e93e1bec470%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26721: "loaddata" can not load data generated by "dumpdata" due to encoding issues

2016-06-08 Thread Django
#26721: "loaddata" can not load data generated by "dumpdata" due to encoding 
issues
-+-
 Reporter:  OBu  |Owner:  nobody
 Type:  Bug  |   Status:  new
Component:  Core |  Version:  1.9
  (Serialization)|
 Severity:  Normal   |   Resolution:
 Keywords:  dumpdata loaddata| Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Description changed by OBu:

Old description:

> When I "dumpdata" my database on my Windows 8.1 machine and load the
> dumped file with "loaddata", I get encoding errors.
>
> Opening the dumped file with ntepad++, setting the encoding to UTF-8 and
> saving it again helps.
>
> [https://groups.google.com/d/topic/django-users/NAHD058Gh_Q/discussion A
> django-users thread] describes the problem in detail so it seems I'm not
> alone...
>
> It might not be a Django problem but a windows pipeline-issue (I was
> using the powershell), but it is a bit embarrassing.

New description:

 When I "dumpdata" my database on my Windows 8.1 machine and load the
 dumped file with "loaddata", I get encoding errors.

 Opening the dumped file with notepad++, setting the encoding to UTF-8 and
 saving it again helps.

 [https://groups.google.com/d/topic/django-users/NAHD058Gh_Q/discussion A
 django-users thread] describes the problem in detail so it seems I'm not
 alone...

 It might not be a Django problem but a windows pipeline-issue (I was using
 the powershell), but it is a bit embarrassing.

--

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/061.d84533e221864636bd0fd2a5665fe395%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26721: "loaddata" can not load data generated by "dumpdata" due to encoding issues

2016-06-08 Thread Django
#26721: "loaddata" can not load data generated by "dumpdata" due to encoding 
issues
-+-
 Reporter:  OBu  |Owner:  nobody
 Type:  Bug  |   Status:  new
Component:  Core |  Version:  1.9
  (Serialization)|
 Severity:  Normal   |   Resolution:
 Keywords:  dumpdata loaddata| Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by OBu):

 Sorry, I don't. I was using python 3.5.1 and django 1.9.7

 I just tried `dir > test.txt` in my windows command line, just to check
 the encoding of the resulting file, and notepad++ tells me it is UTF-8.

 When I do the same in Windows Powershell, encoding is UCE-2 BE BOM

 I assume this is exactly what happened to me, so it's not really a Django
 issue but a problem resulting from the character encoding in Windwos
 Powershell.

 I'm not sure whether there is a way to fix this other then using the
 `--output` option (which I did not test), but maybe this problem should be
 mentioned in the docs.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/061.f9b81f0059a76ee2fd745de720e597d8%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26729: TabularInline not respecting form's custom label and help text if set in form's __init__ method

2016-06-08 Thread Django
#26729: TabularInline not respecting form's custom label and help text if set in
form's __init__ method
---+
 Reporter:  nrogers64  |  Owner:  nobody
 Type:  Bug| Status:  new
Component:  Uncategorized  |Version:  1.9
 Severity:  Normal |   Keywords:
 Triage Stage:  Unreviewed |  Has patch:  0
Easy pickings:  0  |  UI/UX:  0
---+
 Here is my models.py file:

 {{{
 #!python
 from django.db import models


 class Author(models.Model):
 name = models.CharField(max_length=100)

 class Meta:
 ordering = ('name',)

 def __unicode__(self):
 return self.name


 class Book(models.Model):
 author = models.ForeignKey(Author, on_delete=models.CASCADE)
 title = models.CharField(max_length=100, help_text='The book\'s
 title.')

 class Meta:
 ordering = ('title',)

 def __unicode__(self):
 return self.title
 }}}

 Here is my forms.py file:

 {{{
 #!python
 from django import forms

 from .models import Book


 class BookForm1(forms.ModelForm):
 title = forms.CharField(label='Foo', help_text='Bar')

 class Meta:
 model = Book
 fields = [
 'title',
 ]


 class BookForm2(forms.ModelForm):
 class Meta:
 model = Book
 fields = [
 'title',
 ]

 def __init__(self, *args, **kwargs):
 super(BookForm2, self).__init__(*args, **kwargs)

 self.fields['title'].label = 'Baz'
 self.fields['title'].help_text = 'Qux'
 }}}

 Here is my admin.py file:

 {{{
 #!python
 from django.contrib import admin

 from .forms import BookForm1
 from .models import Author, Book


 class BookInline(admin.TabularInline):
 model = Book
 form = BookForm1


 class AuthorAdmin(admin.ModelAdmin):
 inlines = [
 BookInline,
 ]

 admin.site.register(Author, AuthorAdmin)
 admin.site.register(Book)
 }}}

 Using the above code, if I go to /admin/name_of_app/author/add/ it works
 as expected, meaning that the field for the books is labeled "Foo" and its
 help text says "Bar". However, if I edit admin.py and replace both
 instances of `BookForm1` with `BookForm2`, the field for the books is
 labeled "Title" and its help text says "The book's title.". In other
 words, it is falling back to the title and help text provided by the model
 instead of using what's defined in the `BookForm2` class' `__init__`
 method. I should also note that if I replace `admin.TabularInline` with
 `admin.StackedInline` then both `BookForm1` and `BookForm2` work as
 expected.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.f1dc075e380646b57dd93014b77234c1%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26717: Allow customizing stream attribute of Serializer for custom serializers

2016-06-08 Thread Django
#26717: Allow customizing stream attribute of Serializer for custom serializers
-+-
 Reporter:  berkerpeksag |Owner:
 |  berkerpeksag
 Type:  New feature  |   Status:  closed
Component:  Core |  Version:  master
  (Serialization)|
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Tim Graham ):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 In [changeset:"724dd2043ec849e605ba4f4cf1430458c2a8d90a" 724dd204]:
 {{{
 #!CommitTicketReference repository=""
 revision="724dd2043ec849e605ba4f4cf1430458c2a8d90a"
 Fixed #26717 -- Added Serializer.stream_class to customize the stream.
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/070.9fd95aa7524fdaedcfc36ed11adce250%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26702: Document custom field subclass change requires new custom field class

2016-06-08 Thread Django
#26702: Document custom field subclass change requires new custom field class
-+-
 Reporter:  baylee   |Owner:  baylee
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Documentation|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"4765769b76c07f074a915655503d29028d50c122" 4765769b]:
 {{{
 #!CommitTicketReference repository=""
 revision="4765769b76c07f074a915655503d29028d50c122"
 [1.9.x] Fixed #26702 -- Documented how to change the base class of a
 custom field.

 Backport of 7767978beec6098baea75d50a191a3b8224e729f from master
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.e5847a57d351707d6df85a7df3bc9f66%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26702: Document custom field subclass change requires new custom field class

2016-06-08 Thread Django
#26702: Document custom field subclass change requires new custom field class
-+-
 Reporter:  baylee   |Owner:  baylee
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Documentation|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"5e46075fcf5dce3a846d208ab39e7f7aed7f70eb" 5e46075]:
 {{{
 #!CommitTicketReference repository=""
 revision="5e46075fcf5dce3a846d208ab39e7f7aed7f70eb"
 [1.10.x] Fixed #26702 -- Documented how to change the base class of a
 custom field.

 Backport of 7767978beec6098baea75d50a191a3b8224e729f from master
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.f4fa0e6edbc583b27c868d62b810f1db%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26702: Document custom field subclass change requires new custom field class

2016-06-08 Thread Django
#26702: Document custom field subclass change requires new custom field class
-+-
 Reporter:  baylee   |Owner:  baylee
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Documentation|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Tim Graham ):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 In [changeset:"7767978beec6098baea75d50a191a3b8224e729f" 7767978b]:
 {{{
 #!CommitTicketReference repository=""
 revision="7767978beec6098baea75d50a191a3b8224e729f"
 Fixed #26702 -- Documented how to change the base class of a custom field.
 }}}

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.d05880027ea9934f21819a96b30eff57%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26709: Add operation for creating database indexes and class based indexes

2016-06-08 Thread Django
#26709: Add operation for creating database indexes and class based indexes
-+
 Reporter:  akki |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Migrations   |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  db-indexes   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+
Changes (by akki):

 * needs_docs:  1 => 0


Comment:

 Added docs for the new index classes.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/062.8e158845f17d05a50c83138dd38813ad%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26677: Run i18n tests on disposable FS tree instead of source code

2016-06-08 Thread Django
#26677: Run i18n tests on disposable FS tree instead of source code
-+-
 Reporter:  ramiro   |Owner:  ramiro
 Type:   |   Status:  assigned
  Cleanup/optimization   |
Component:   |  Version:  master
  Internationalization   |
 Severity:  Normal   |   Resolution:
 Keywords:  tests isolation  | Triage Stage:  Accepted
  i18n serializemixin unit unittest  |
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by ramiro):

 * needs_better_patch:  1 => 0


Comment:

 Replying to [comment:7 aaugustin]:
 > Indeed, once you've managed to isolate each test in its own temporary
 directory, you can remove `SerializeMixin`, and the tests will be faster.

 Exactly, that's one of the included changes.

 >
 > While you're there you could check how much I/O these tests perform. I/O
 may be a bottleneck even with a SSD e.g. if each test copies 50 files
 where 5 would suffice. IIRC the total runtime of the i18n tests was about
 4 seconds with a SSD, so there isn't a huge lot to gain and I didn't spend
 much time optimizing it. Over a few thousands runs, improvements would
 compound, though.

 Will do some testing. No SDD here but will see what conclussion can be
 made.

 Thanks!

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.8d85dd5f68778bdf51ea82b4e331f7b5%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26721: "loaddata" can not load data generated by "dumpdata" due to encoding issues

2016-06-08 Thread Django
#26721: "loaddata" can not load data generated by "dumpdata" due to encoding 
issues
-+-
 Reporter:  OBu  |Owner:  nobody
 Type:  Bug  |   Status:  new
Component:  Core |  Version:  1.9
  (Serialization)|
 Severity:  Normal   |   Resolution:
 Keywords:  dumpdata loaddata| Triage Stage:
 |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by bmispelon):

 Hi,

 Are you able to try to do `dumpdata` with both Python 2 and Python 3? Does
 it make any difference?

 Thanks.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/061.6b76b98f7c7fb2af1af133ddc15f3b8e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...

2016-06-08 Thread Django
#26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone
number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...
---+--
 Reporter:  heindshed  |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.9
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by heindshed):

 * Attachment "@@Call, 1-888-633-5526 for all type help by Zoho Mail tech
 support phone number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho
 docx" added.


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.9af02a9dbdd4371ecb38d0cd776c7bf6%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...

2016-06-08 Thread Django
#26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone
number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...
---+--
 Reporter:  heindshed  |Owner:  nobody
 Type:  Uncategorized  |   Status:  new
Component:  Uncategorized  |  Version:  1.9
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by heindshed):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.16f57072f93d833fa5fbeadf698ad717%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...

2016-06-08 Thread Django
#26728: @@Call, 1-888-633-5526 for all type help by Zoho Mail tech support phone
number, Zoho Mail Zoho Mail Tech Support Phone Number, Zoho ...
---+
 Reporter:  heindshed  |  Owner:  nobody
 Type:  Uncategorized  | Status:  new
Component:  Uncategorized  |Version:  1.9
 Severity:  Normal |   Keywords:
 Triage Stage:  Unreviewed |  Has patch:  1
Easy pickings:  0  |  UI/UX:  0
---+


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.4c7bb9686c5dc811ea8b7827708a296e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26693: RenameModel causes state.apps rendering leading to massive time increase in makemigrations

2016-06-08 Thread Django
#26693: RenameModel causes state.apps rendering leading to massive time 
increase in
makemigrations
--+
 Reporter:  simonpercivall|Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  closed
Component:  Migrations|  Version:  1.9
 Severity:  Normal|   Resolution:  fixed
 Keywords:| Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  1
--+
Changes (by heindshed):

 * status:  new => closed
 * needs_better_patch:  0 => 1
 * needs_docs:  0 => 1
 * ui_ux:  0 => 1
 * resolution:   => fixed


Old description:

> Not 100% sure I have complete understanding of what happens, or why, but
> it seems a `RenameModel` migration leads to an evaluation of
> `state.apps`, which affects the time it takes for it and all following
> migration states to be calculated.
>
> This is for a pretty big app, with lots of migrations. The time to run
> `makemigrations` for all apps goes from 1 seconds to 77 seconds with one
> `RenameModel` migration.
>
> A test where `apps.state` was replaced by `temp_state = state.close();
> apps = temp_state.apps` resolved the issue, but I'm not completely sure
> of the side effects of doing that. (Or even better if it were possible to
> check immediately if `'apps' in state.__dict__` and skip the rendering
> completely.)

New description:

 RAraMcÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone
  zoho phone number  1

[Django] #26727: zoho email tech 1-888-633-5526 support contact number zoho email customer service number zoho email customer service help zoho email ...

2016-06-08 Thread Django
#26727: zoho email tech 1-888-633-5526 support contact number zoho email 
customer
service number zoho email customer service help zoho email ...
-+-
 Reporter:   |  Owner:  nobody
  heindshed  |
 Type:   | Status:  new
  Uncategorized  |
Component:   |Version:  1.9
  Uncategorized  |   Keywords:  support phone number for  zoho
 Severity:  Normal   |  phone number  1-888-633-5526  email  support
 |  phone for tech 1-888-633-5526 nical issues for
 Triage Stage:   |  zoho phone number  1-888-633-5526  email
  Unreviewed |  Has patch:  1
Easy pickings:  0|  UI/UX:  1
-+-


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.a2198e8895b7e4e74a5753b7140359b2%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26727: zoho email tech 1-888-633-5526 support contact number zoho email customer service number zoho email customer service help zoho email ...

2016-06-08 Thread Django
#26727: zoho email tech 1-888-633-5526 support contact number zoho email 
customer
service number zoho email customer service help zoho email ...
-+-
 Reporter:  heindshed|  Owner:  nobody
 Type:  Uncategorized| Status:  new
Component:  Uncategorized|Version:  1.9
 Severity:  Normal   | Resolution:
 Keywords:  support phone number for  zoho   |   Triage Stage:
  phone number  1-888-633-5526  email  support   |  Unreviewed
  phone for tech 1-888-633-5526 nical issues |
  for  zoho phone number  1-888-633-5526  email  |
Has patch:  1|  Easy pickings:  0
UI/UX:  1|
-+-
Changes (by heindshed):

 * Attachment "zoho email tech 1-888-633-5526 support contact number zoho
 email customer service number zoho email customer service help zoho email
 docx" added.


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.26b5fa308d4fc99d8cbbd012b3be8c20%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26726: zoho phone number 1-888-633-5526 mail tech 1-888-633-5526 support zoho phone number 1-888-633-5526 customer service number zoho phone number.

2016-06-08 Thread Django
#26726: zoho phone number 1-888-633-5526 mail tech 1-888-633-5526 support zoho
phone number 1-888-633-5526 customer service number zoho phone number.
---+
 Reporter:  heindshed  |  Owner:  nobody
 Type:  Uncategorized  | Status:  new
Component:  Uncategorized  |Version:  1.9
 Severity:  Normal | Resolution:
 Keywords: |   Triage Stage:  Unreviewed
Has patch:  1  |  Easy pickings:  0
UI/UX:  1  |
---+
Changes (by heindshed):

 * Attachment "zoho phone number  1-888-633-5526 ZOHO email TECHNICAL
 SUPPORT PHONE NUMBER.docx" added.


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.22311174f59fc65db638f5a747b08813%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26726: zoho phone number 1-888-633-5526 mail tech 1-888-633-5526 support zoho phone number 1-888-633-5526 customer service number zoho phone number.

2016-06-08 Thread Django
#26726: zoho phone number 1-888-633-5526 mail tech 1-888-633-5526 support zoho
phone number 1-888-633-5526 customer service number zoho phone number.
---+
 Reporter:  heindshed  |  Owner:  nobody
 Type:  Uncategorized  | Status:  new
Component:  Uncategorized  |Version:  1.9
 Severity:  Normal |   Keywords:
 Triage Stage:  Unreviewed |  Has patch:  1
Easy pickings:  0  |  UI/UX:  1
---+
 zoho phone number 1-888-633-5526 mail tech 1-888-633-5526 support zoho
 phone number 1-888-633-5526 customer service number zoho phone number.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.fbc3bd198309911815aacb71f79edb6e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26697: Drop django.contrib.gis.maps?

2016-06-08 Thread Django
#26697: Drop django.contrib.gis.maps?
--+
 Reporter:  ramiro|Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  closed
Component:  GIS   |  Version:  master
 Severity:  Normal|   Resolution:  fixed
 Keywords:  maps gmaps gis| Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  0
--+
Changes (by heindshed):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 McÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support chat
  zoho phone number  1-888-633-5526  email support phone number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number usa
  zoho phone number  1-888-633-5526  email customer support phone number
  zoho phone number  1-888-633-5526  email customer support live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 contact number
  zoho phone number  1-888-633-5526  email customer service number
  zoho phone number  1-888-633-5526  email customer service help
  zoho phone number  1-888-633-5526  email customer service usa
  zoho phone number  1-888-633-5526  email customer service telephone
 number
 contact  zoho phone number  1-888-633-5526  email customer service
 contact  zoho phone number  1-888-633-5526  email by phone
 how can i contact yahoo about my email acc

Re: [Django] #26697: Drop django.contrib.gis.maps?

2016-06-08 Thread Django
#26697: Drop django.contrib.gis.maps?
--+
 Reporter:  ramiro|Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  new
Component:  GIS   |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  maps gmaps gis| Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  0
--+
Changes (by heindshed):

 * needs_better_patch:  0 => 1
 * needs_docs:  0 => 1


Old description:

> * The django.contrib.gis.maps.openlayers module has been empty since it
> was created back in 2007.
> * The django.contrib.gis.maps.google module:
>* Interfaces with the Google Maps API v2 which has been
> retired/deprecated for a long time
> (https://developers.google.com/maps/documentation/javascript/versions
> #documentation-for-the-api-versions)
>* Hasn't received a not-cleanup commit since Jul 2013

New description:

 McÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support chat
  zoho phone number  1-888-633-5526  email support phone number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number usa
  zoho phone number  1-888-633-5526  email customer support phone number
  zoho phone number  1-888-633-5526  email customer support live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 contact number
  zoho ph

Re: [Django] #26702: Document custom field subclass change requires new custom field class

2016-06-08 Thread Django
#26702: Document custom field subclass change requires new custom field class
-+-
 Reporter:  baylee   |Owner:  baylee
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Documentation|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  1|UI/UX:  1
-+-
Changes (by heindshed):

 * cc: heindshed (added)
 * needs_better_patch:  0 => 1
 * needs_tests:  0 => 1
 * easy:  0 => 1
 * needs_docs:  0 => 1
 * ui_ux:  0 => 1


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.d802c6cf41af7e28ee66c96cdad3fd7b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26702: Document custom field subclass change requires new custom field class

2016-06-08 Thread Django
#26702: Document custom field subclass change requires new custom field class
-+-
 Reporter:  baylee   |Owner:  baylee
 Type:   |   Status:  closed
  Cleanup/optimization   |
Component:  Documentation|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by heindshed):

 * status:  assigned => closed
 * resolution:   => fixed


Old description:

> Related to #26586
>
> Can't alter a custom field to have a different base field type.
> Documentation should be updated to reflect this and proposed solution.
>
> Example before state:
> {{{
> class CustomCharField(models.CharField):
> def foo(self):
> pass
>
> class Author(models.Model):
> name = CustomCharField(max_length=255)
> }}}
>
> Example of what won't work:
> {{{
> class CustomCharField(models.TextField):
> def foo(self):
> pass
>
> class Author(models.Model):
> name = CustomCharField(max_length=255)
> }}}
>
> Example of what you should change to:
> {{{
> class CustomFieldMixin(object):
> def foo(self):
> pass
>
> class CustomCharField(CustomFieldMixin, models.CharField):
> pass
>
> class CustomTextField(CustomFieldMixin, models.TextField):
> pass
>
> class Author(models.Model):
> name = CustomTextField(max_length=255)
> }}}
>
> Should also include link to:
> https://docs.djangoproject.com/en/1.9/topics/migrations/#considerations-
> when-removing-model-fields to explain why user must keep old field
> definition around.

New description:

 McÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho pho

[Django] #26725: GOOGLE(( ==))Zoho mail customer 1-888-633-5526 service Phone Number for ZOHO Technical Support and zoho mail password recovery and other zoho mail issues.

2016-06-08 Thread Django
#26725: GOOGLE(( ==))Zoho mail customer 1-888-633-5526 service Phone Number for
ZOHO Technical Support and zoho mail password recovery and other zoho mail
issues.
-+-
 Reporter:   |  Owner:  nobody
  heindshed  |
 Type:  Bug  | Status:  new
Component:   |Version:  1.10
  Uncategorized  |   Keywords:  TecH+nical¥Call Zoho Mail))
 Severity:  Normal   |  1-888-633-5526 Zoho Mail T.e.c.h s.u.p.p.o.r.t.
 |  .p.h.o.n.e. .n.u.m.b.e.r. canada.pdf Zoho
 |  Mail@1-888-633-5526)Zoho Mail Tech Support
 |  Phone NumberZoho Mail@1-888-633-5526)Zoho Mail
 |  Tech Support Phone Number vides online solution
 |  for all USA/CANADA clients. For any help of
 |  query call 11-888-633-5526 to get all Zoho Mail
 |  account solution. @@Call, 1-888-633-5526 for
 |  all type help by Zoho Mail tech support phone
 |  number, Zoho Mail Zoho Mail Tech Support Phone
 |  Number, Zoho Mail Help Desk Phone Number, Zoho
 |  Mail tech support number, Zoho Mail technical
 |  support phone number,@@@ Zoho Mail phone
 |  number, Zoho Mail technical support number,
 |  Zoho Mail support phone number, Zoho Mail
 |  technical support, Zoho Mail Customer Service
 |  Phone Number, Zoho Mail Customer Service
 |  Number, Zoho Mail Customer Support Phone
 |  Number, Zoho Mail Customer Support Number,
 |  Zoho Mail Customer Service Helpline Number,
 |  Zoho Mail Customer Care Number, Zoho Mail
 |  support team phone number, @ Zoho Mail help
 |  number-Zoho Mail Helpline Number; Zoho Mail
 |  help phone number-Zoho Mail Helpline Number,
 |  Zoho Mail Tech Support Toll free Number, Zoho
 |  Mail Support Telephone Number, Zoho Mail Tech
 |  Support Telephone number, Zoho Mail Tech
 |  Support contact number, Zoho Mail support
 |  contact number, Zoho Mail technical support
 |  contact number. Call, Zoho Mail tech support
 |  phone number, Zoho Mail Zoho Mail Tech Support
 |  Phone Number, Zoho Mail Help Desk Phone Number,
 |  Zoho Mail tech support number, Zoho Mail
 |  technical support phone number, Zoho Mail phone
 |  number, Zoho Mail technical support number,
 |  Zoho Mail support phone number. It is very
 |  popular toll free number which vide by Zoho
 |  Mail technical support, Zoho Mail Customer
 |  Service Phone Number, Zoho Mail Customer
 |  Service Number, Zoho Mail Customer Support
 |  Phone Number, Zoho Mail Customer Support
 |  Number, Zoho Mail Customer Service Helpline
 |  Number, Zoho Mail Customer Care Number, Zoho
 |  Mail support team phone number. Call, Zoho Mail
 |  tech support phone number, Zoho Mail Zoho Mail
 |  Tech Support Phone Number, Zoho Mail Help Desk
 |  Phone Number, Zoho Mail tech support number,
 |  Zoho Mail technical support phone number, Zoho
 |  Mail phone number, Zoho Mail technical support
 |  number, Zoho Mail support phone number, Zoho
 |  Mail technical support, Zoho Mail Customer
 |  Service Phone Number, Zoho Mail Customer
 |  Service Number, Zoho Mail Customer Support
 |  Phone Number, Zoho Mail Customer Support
 |  Number, Zoho Mail Customer Service Helpline
 |  Number, Zoho Mail Customer Care Number, Zoho
 |  Mail support team phone number, Zoho Mail help
 |  number-Zoho Mail Helpline Number; Zoho Mail
 |  help phone number, Zoho Mail Helpline Number,
 |  Zoho Mail Tech Support Toll free Number, Zoho
 |  Mail Support Telephone Number, Zoho Mail Tech
 |  Support Telephone number, Zoho Mail Tech
 |  

Re: [Django] #26724: Usa+Canada**((( I-888-633-5526 ) ZOHO PHONE NUMBER ZOHO TECH SUPPORT NUMBER

2016-06-08 Thread Django
#26724: Usa+Canada**((( I-888-633-5526 ) ZOHO PHONE NUMBER ZOHO TECH SUPPORT 
NUMBER
-+-
 Reporter:  heindshed|Owner:  ZOHO
 |  SUPPORT
 Type:  Uncategorized|   Status:  closed
Component:  Uncategorized|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  support phone| Triage Stage:
  number for  zoho phone number  |  Unreviewed
  1-888-633-5526  email  support |
  phone for tech 1-888-633-5526  |
  nical issues for  zoho phone   |
  number  1-888-633-5526  email  |
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  1
-+-
Changes (by heindshed):

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


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.55764338de782667cd1d65cba8717432%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26724: Usa+Canada**((( I-888-633-5526 ) ZOHO PHONE NUMBER ZOHO TECH SUPPORT NUMBER

2016-06-08 Thread Django
#26724: Usa+Canada**((( I-888-633-5526 ) ZOHO PHONE NUMBER ZOHO TECH SUPPORT 
NUMBER
-+-
 Reporter:   |  Owner:  ZOHO SUPPORT
  heindshed  |
 Type:   | Status:  new
  Uncategorized  |
Component:   |Version:  1.9
  Uncategorized  |   Keywords:  support phone number for  zoho
 Severity:  Normal   |  phone number  1-888-633-5526  email  support
 |  phone for tech 1-888-633-5526 nical issues for
 Triage Stage:   |  zoho phone number  1-888-633-5526  email
  Unreviewed |  Has patch:  1
Easy pickings:  1|  UI/UX:  1
-+-
 McÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support chat
  zoho phone number  1-888-633-5526  email support phone number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number usa
  zoho phone number  1-888-633-5526  email customer support phone number
  zoho phone number  1-888-633-5526  email customer support live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 contact number
  zoho phone number  1-888-633-5526  email customer service number
  zoho phone number  1-888-633-5526  email customer service help
  zoho phone number  1-888-633-5526  email customer service usa
  zoho phone number  1-888-633-5526  email customer service telephone
 number
 contact  zoho phone number  1-888-633-5526  email customer service
 contact  zoho phone number  1-888-633-5526  email by phone
 how can i contact yahoo about my email account
 free  zoho phone number  1-888-633-5526  email 

Re: [Django] #26723: Zoho mail tech support 1-888-633-5526 technical support phone number technical support numberUsa+Canada**((( I-888-633-5526 ) ...

2016-06-08 Thread Django
#26723: Zoho mail tech support 1-888-633-5526 technical support phone number
technical support numberUsa+Canada**((( I-888-633-5526 ) ...
-+-
 Reporter:  heindshed|Owner:  EMMA
 |  WATSON
 Type:  Uncategorized|   Status:  closed
Component:  Uncategorized|  Version:  1.9
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  Zonealarm usa| Triage Stage:
  customer service   |  Unreviewed
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  1|UI/UX:  1
-+-
Changes (by heindshed):

 * status:  new => closed
 * cc: heindshed (added)
 * needs_better_patch:  0 => 1
 * needs_tests:  0 => 1
 * needs_docs:  0 => 1
 * resolution:   => fixed


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.cb670944efccb920bc5f75ce009ffdde%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26723: Zoho mail tech support 1-888-633-5526 technical support phone number technical support numberUsa+Canada**((( I-888-633-5526 ) ...

2016-06-08 Thread Django
#26723: Zoho mail tech support 1-888-633-5526 technical support phone number
technical support numberUsa+Canada**((( I-888-633-5526 ) ...
-+-
 Reporter:  heindshed|Owner:  EMMA
 |  WATSON
 Type:  Uncategorized|   Status:  new
Component:  Uncategorized|  Version:  1.9
 Severity:  Normal   |   Resolution:
 Keywords:  Zonealarm usa| Triage Stage:
  customer service   |  Unreviewed
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  1|UI/UX:  1
-+-
Changes (by heindshed):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.3183d50dbb57a194802c4b874e0dcb84%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #26723: Zoho mail tech support 1-888-633-5526 technical support phone number technical support numberUsa+Canada**((( I-888-633-5526 ) ...

2016-06-08 Thread Django
#26723: Zoho mail tech support 1-888-633-5526 technical support phone number
technical support numberUsa+Canada**((( I-888-633-5526 ) ...
--+
 Reporter:  heindshed |  Owner:  EMMA WATSON
 Type:| Status:  new
  Uncategorized   |
Component:|Version:  1.9
  Uncategorized   |
 Severity:  Normal|   Keywords:  Zonealarm usa customer service
 Triage Stage:  Unreviewed|  Has patch:  1
Easy pickings:  1 |  UI/UX:  1
--+
 McÅfË€ JUST CALL NOW  zoho phone number 1-888-633-5526  Email tech
 1-888-633-5526 nical Support Customer Phone Number
 zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
  zoho phone number  1-888-633-5526  customer service number
  zoho phone number  1-888-633-5526  mail tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email Helpline Number
  zoho phone number  1-888-633-5526  mail customer support
  zoho phone number  1-888-633-5526  mail toll free support number
  zoho phone number  1-888-633-5526  email customer service phone number
 tech 1-888-633-5526  support numbers for  zoho phone number
 1-888-633-5526  email
  zoho phone number  1-888-633-5526  email customer support number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support number
  zoho phone number  1-888-633-5526  email support telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number
  zoho phone number  1-888-633-5526  mail customer support numbers
  zoho phone number  1-888-633-5526  email support number
  zoho phone number  1-888-633-5526  email customer support phone number
 usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone number
  zoho phone number  1-888-633-5526  email phone tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 phone numbers
  zoho phone number  1-888-633-5526  email free tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email live mail tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email live chat tech 1-888-633-5526
 support
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live
  zoho phone number  1-888-633-5526  email live support
  zoho phone number  1-888-633-5526  email live customer support
  zoho phone number  1-888-633-5526  mail free customer service number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support
  zoho phone number  1-888-633-5526  email support usa
  zoho phone number  1-888-633-5526  email helpdesk number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 helpdesk number
  zoho phone number  1-888-633-5526  email helpdesk contact number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 services
  zoho phone number  1-888-633-5526  email customer support service
  zoho phone number  1-888-633-5526  email customer support services usa
  zoho phone number  1-888-633-5526  email toll free service
  zoho phone number  1-888-633-5526  email toll free customer service
  zoho phone number  1-888-633-5526  email customer service desk
  zoho phone number  1-888-633-5526  email help desk services
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 telephone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support chat
  zoho phone number  1-888-633-5526  email support phone number usa
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support phone number usa
  zoho phone number  1-888-633-5526  email customer support phone number
  zoho phone number  1-888-633-5526  email customer support live chat
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526  support
 contact number
  zoho phone number  1-888-633-5526  email customer service number
  zoho phone number  1-888-633-5526  email customer service help
  zoho phone number  1-888-633-5526  email customer service usa
  zoho phone number  1-888-633-5526  email customer service telephone
 number
 contact  zoho phone number  1-888-633-5526  email customer service
 contact  zoho phone number  1-888-633-5526  email by phone
 how can i contact yahoo about my email account
 free  zoho phone number  1-888-633-5526  email tech 1-888-633-5526
 support phone number
  zoho phone number  1-888-633-5526  email tech 1-888-633-5526 nical
 support telep

Re: [Django] #26677: Run i18n tests on disposable FS tree instead of source code

2016-06-08 Thread Django
#26677: Run i18n tests on disposable FS tree instead of source code
-+-
 Reporter:  ramiro   |Owner:  ramiro
 Type:   |   Status:  assigned
  Cleanup/optimization   |
Component:   |  Version:  master
  Internationalization   |
 Severity:  Normal   |   Resolution:
 Keywords:  tests isolation  | Triage Stage:  Accepted
  i18n serializemixin unit unittest  |
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-

Comment (by aaugustin):

 I did that in a bunch of other places when I implemented test
 parallelization. To test it, I just made the entire source tree readonly,
 ran the tests and saw what broke.

 I gave up for i18n tests because it required too extensive changes. It's
 great to see that you're picking up the flag! Indeed, once you've managed
 to isolate each test in its own temporary directory, you can remove
 `SerializeMixin`, and the tests will be faster.

 While you're there you could check how much I/O these tests perform. I/O
 may be a bottleneck even with a SSD e.g. if each test copies 50 files
 where 5 would suffice. IIRC the total runtime of the i18n tests was about
 4 seconds with a SSD, so there isn't a huge lot to gain and I didn't spend
 much time optimizing it. Over a few thousands runs, improvements would
 compound, though.

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.c0bb4b5510c93ba3e4f9bbf99d1502b7%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.