Re: CITextField base class

2017-02-08 Thread Tim Graham
I thought the mixin idea was good but everyone else (including Aymeric) 
reviewed the pull request and ignored your comment about that so I assumed 
no one else saw its merits. Considering a CITextField that uses CharField 
still has some usefulness as you mentioned, I'm in favor of CITextField not 
inheriting anything and requiring its use as a mixin -- unless there are 
some unforeseen problems with that.

On Wednesday, February 8, 2017 at 11:55:50 AM UTC-5, Jon Dufresne wrote:
>
> > Does it make sense to add a CICharField for these cases or you can just 
> override the form/admin.
>
> In a past Django developers discussion, Aymeric suggested building this 
> functionality with a mixin so the citext type could apply to multiple DB 
> fields which would then affect how the form field is rendered. Personally, 
> I like this idea and believe it would provide the most flexibility such 
> that a TextField, CharField, EmailField, etc. could all be backed by the 
> citext type.
>
> https://groups.google.com/d/msg/django-developers/SW7_qI81G58/i6aJVRnJBAAJ
>
> From Aymeric in the previous thread:
>
> ---
> I'm forseeing a small difficulty in terms of API. This is a behavior I'd 
> like
> to "mix in" to some fields but I can't say if that will be easy to 
> implement.
>
> The general ideas would be:
>
> # A mixin
>
> class CITextField(TextField):
> # ...
>
> # Case-insensitive versions of some built-in Django default fields
> # (if we consider that makes sense)
>
> class CIEmailField(CITextField, EmailField):
> pass
>
> # The possibility for users to make custom fields case insensitive
>
> class CITagField(CITextField, TagField):
> pass
> ---
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/6f791f1c-ddaa-4c25-8fa7-730a70993a28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Jon Dufresne
> Does it make sense to add a CICharField for these cases or you can just
override the form/admin.

In a past Django developers discussion, Aymeric suggested building this
functionality with a mixin so the citext type could apply to multiple DB
fields which would then affect how the form field is rendered. Personally,
I like this idea and believe it would provide the most flexibility such
that a TextField, CharField, EmailField, etc. could all be backed by the
citext type.

https://groups.google.com/d/msg/django-developers/SW7_qI81G58/i6aJVRnJBAAJ

>From Aymeric in the previous thread:

---
I'm forseeing a small difficulty in terms of API. This is a behavior I'd
like
to "mix in" to some fields but I can't say if that will be easy to
implement.

The general ideas would be:

# A mixin

class CITextField(TextField):
# ...

# Case-insensitive versions of some built-in Django default fields
# (if we consider that makes sense)

class CIEmailField(CITextField, EmailField):
pass

# The possibility for users to make custom fields case insensitive

class CITagField(CITextField, TagField):
pass
---

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CADhq2b5GvZMSq9rUiGOHawfbBBoP0rf1%3D74Zi-yzmxcnvxndxA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Sean Brant
Does it make sense to add a CICharField for these cases or you can just
override the form/admin.

On Wed, Feb 8, 2017 at 10:29 AM, Jon Dufresne 
wrote:

> I believe this will also change the default form widget from  type="text"> to . Is that also desired? IME, I most often use
> citext with short text inputs, such as email.
>
> On Wed, Feb 8, 2017 at 7:11 AM, Tim Graham  wrote:
>
>> Since that's a release blocker for a feature that hasn't been released
>> yet, it's fine to reference/reopen the original ticket rather than create a
>> new one. I've created a PR, https://github.com/django/django/pull/8034.
>>
>> On Wednesday, February 8, 2017 at 7:40:02 AM UTC-5, Adam Johnson wrote:
>>>
>>> Pretty sure this is a new ticket since it's effectively a bug report
>>>
>>> On 8 February 2017 at 11:00, Mads Jensen  wrote:
>>>


 On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:
>
> Sounds legit, make a ticket
>

 Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?


> On 8 February 2017 at 00:37, Sean Brant  wrote:
>
>> I noticed the new postgres citext[1] field is a subclass of
>> CharField. Wouldn't it be more correct to subclass TextField?
>> Subclassing CharField means we need to add a max_length which is ignored 
>> in
>> the db.
>>
>> [1] https://github.com/django/django/blob/master/django/cont
>> rib/postgres/fields/citext.py
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-develop...@googlegroups.com.
>> To post to this group, send email to django-d...@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-developers
>> .
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-developers/0e50eae1
>> -8806-47fc-b223-9cac7152bf1e%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Adam
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django developers (Contributions to Django itself)" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-develop...@googlegroups.com.
 To post to this group, send email to django-d...@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-developers.
 To view this discussion on the web visit https://groups.google.com/d/ms
 gid/django-developers/e2be5fd6-3fc0-44d5-8d07-da713eb58db4%4
 0googlegroups.com
 
 .

 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>> Adam
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-developers.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-developers/cac9ac5f-cdcd-4e33-bba3-b1a9de700365%
>> 40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/CADhq2b6%3Dc7EAzbjP%3DFxDb%
> 3D7O2-8x6V4jOoQhx2OTvcAH1P_xEg%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because 

Re: CITextField base class

2017-02-08 Thread Jon Dufresne
I believe this will also change the default form widget from  to . Is that also desired? IME, I most often use
citext with short text inputs, such as email.

On Wed, Feb 8, 2017 at 7:11 AM, Tim Graham  wrote:

> Since that's a release blocker for a feature that hasn't been released
> yet, it's fine to reference/reopen the original ticket rather than create a
> new one. I've created a PR, https://github.com/django/django/pull/8034.
>
> On Wednesday, February 8, 2017 at 7:40:02 AM UTC-5, Adam Johnson wrote:
>>
>> Pretty sure this is a new ticket since it's effectively a bug report
>>
>> On 8 February 2017 at 11:00, Mads Jensen  wrote:
>>
>>>
>>>
>>> On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:

 Sounds legit, make a ticket

>>>
>>> Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
>>>
>>>
 On 8 February 2017 at 00:37, Sean Brant  wrote:

> I noticed the new postgres citext[1] field is a subclass of CharField.
> Wouldn't it be more correct to subclass TextField? Subclassing CharField
> means we need to add a max_length which is ignored in the db.
>
> [1] https://github.com/django/django/blob/master/django/cont
> rib/postgres/fields/citext.py
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-develop...@googlegroups.com.
> To post to this group, send email to django-d...@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/0e50eae1
> -8806-47fc-b223-9cac7152bf1e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



 --
 Adam

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django developers (Contributions to Django itself)" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-develop...@googlegroups.com.
>>> To post to this group, send email to django-d...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-developers.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-developers/e2be5fd6-3fc0-44d5-8d07-da713eb58db4%
>>> 40googlegroups.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Adam
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/cac9ac5f-cdcd-4e33-bba3-
> b1a9de700365%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CADhq2b6%3Dc7EAzbjP%3DFxDb%3D7O2-8x6V4jOoQhx2OTvcAH1P_xEg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Sean Brant
Thanks Tim. I re-opened the ticket.

On Wed, Feb 8, 2017 at 9:11 AM, Tim Graham  wrote:

> Since that's a release blocker for a feature that hasn't been released
> yet, it's fine to reference/reopen the original ticket rather than create a
> new one. I've created a PR, https://github.com/django/django/pull/8034.
>
> On Wednesday, February 8, 2017 at 7:40:02 AM UTC-5, Adam Johnson wrote:
>>
>> Pretty sure this is a new ticket since it's effectively a bug report
>>
>> On 8 February 2017 at 11:00, Mads Jensen  wrote:
>>
>>>
>>>
>>> On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:

 Sounds legit, make a ticket

>>>
>>> Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
>>>
>>>
 On 8 February 2017 at 00:37, Sean Brant  wrote:

> I noticed the new postgres citext[1] field is a subclass of CharField.
> Wouldn't it be more correct to subclass TextField? Subclassing CharField
> means we need to add a max_length which is ignored in the db.
>
> [1] https://github.com/django/django/blob/master/django/cont
> rib/postgres/fields/citext.py
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-develop...@googlegroups.com.
> To post to this group, send email to django-d...@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/0e50eae1
> -8806-47fc-b223-9cac7152bf1e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



 --
 Adam

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django developers (Contributions to Django itself)" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-develop...@googlegroups.com.
>>> To post to this group, send email to django-d...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-developers.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-developers/e2be5fd6-3fc0-44d5-8d07-da713eb58db4%
>>> 40googlegroups.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Adam
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/cac9ac5f-cdcd-4e33-bba3-
> b1a9de700365%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAPNuhQyW9MRynUkC6ZJGxUw5BGOXebdWZHjROcFaPQ%3DvFG4vug%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Tim Graham
Since that's a release blocker for a feature that hasn't been released yet, 
it's fine to reference/reopen the original ticket rather than create a new 
one. I've created a PR, https://github.com/django/django/pull/8034.

On Wednesday, February 8, 2017 at 7:40:02 AM UTC-5, Adam Johnson wrote:
>
> Pretty sure this is a new ticket since it's effectively a bug report
>
> On 8 February 2017 at 11:00, Mads Jensen  
> wrote:
>
>>
>>
>> On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:
>>>
>>> Sounds legit, make a ticket
>>>
>>
>> Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
>>  
>>
>>> On 8 February 2017 at 00:37, Sean Brant  wrote:
>>>
 I noticed the new postgres citext[1] field is a subclass of CharField. 
 Wouldn't it be more correct to subclass TextField? Subclassing CharField 
 means we need to add a max_length which is ignored in the db.

 [1] 
 https://github.com/django/django/blob/master/django/contrib/postgres/fields/citext.py

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Django developers (Contributions to Django itself)" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to django-develop...@googlegroups.com.
 To post to this group, send email to django-d...@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-developers.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/django-developers/0e50eae1-8806-47fc-b223-9cac7152bf1e%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> -- 
>>> Adam
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-develop...@googlegroups.com .
>> To post to this group, send email to django-d...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-developers.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-developers/e2be5fd6-3fc0-44d5-8d07-da713eb58db4%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Adam
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/cac9ac5f-cdcd-4e33-bba3-b1a9de700365%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Adam Johnson
Pretty sure this is a new ticket since it's effectively a bug report

On 8 February 2017 at 11:00, Mads Jensen  wrote:

>
>
> On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:
>>
>> Sounds legit, make a ticket
>>
>
> Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
>
>
>> On 8 February 2017 at 00:37, Sean Brant  wrote:
>>
>>> I noticed the new postgres citext[1] field is a subclass of CharField.
>>> Wouldn't it be more correct to subclass TextField? Subclassing CharField
>>> means we need to add a max_length which is ignored in the db.
>>>
>>> [1] https://github.com/django/django/blob/master/django/cont
>>> rib/postgres/fields/citext.py
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django developers (Contributions to Django itself)" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-develop...@googlegroups.com.
>>> To post to this group, send email to django-d...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-developers.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/django-developers/0e50eae1-8806-47fc-b223-9cac7152bf1e%
>>> 40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Adam
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/e2be5fd6-3fc0-44d5-8d07-
> da713eb58db4%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Adam

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMyDDM2RKvvrfposxNt-Nuvo0ux_rsxTMqK2vLKdig4qZM%2BCRQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Florian Apolloner


On Wednesday, February 8, 2017 at 12:00:23 PM UTC+1, Mads Jensen wrote:
>
> Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
>

Nope, since that ticket indeed got fixed. A bug in something that got 
committed usually also means new ticket.

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/52d0cba4-a573-4e75-80f4-23005b78d4a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Mads Jensen


On Wednesday, February 8, 2017 at 11:32:22 AM UTC+1, Adam Johnson wrote:
>
> Sounds legit, make a ticket
>

Shouldn't https://code.djangoproject.com/ticket/26610 just be reopened?
 

> On 8 February 2017 at 00:37, Sean Brant  
> wrote:
>
>> I noticed the new postgres citext[1] field is a subclass of CharField. 
>> Wouldn't it be more correct to subclass TextField? Subclassing CharField 
>> means we need to add a max_length which is ignored in the db.
>>
>> [1] 
>> https://github.com/django/django/blob/master/django/contrib/postgres/fields/citext.py
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django developers (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-develop...@googlegroups.com .
>> To post to this group, send email to django-d...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-developers.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-developers/0e50eae1-8806-47fc-b223-9cac7152bf1e%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Adam
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/e2be5fd6-3fc0-44d5-8d07-da713eb58db4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CITextField base class

2017-02-08 Thread Adam Johnson
Sounds legit, make a ticket

On 8 February 2017 at 00:37, Sean Brant  wrote:

> I noticed the new postgres citext[1] field is a subclass of CharField.
> Wouldn't it be more correct to subclass TextField? Subclassing CharField
> means we need to add a max_length which is ignored in the db.
>
> [1] https://github.com/django/django/blob/master/django/
> contrib/postgres/fields/citext.py
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/0e50eae1-8806-47fc-b223-
> 9cac7152bf1e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Adam

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMyDDM1XL1pJ8%2B05RycECRYWj4x3Y98mn7XPgoYvRrR20631rQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.