3
7^                 @   s&   d Z ddlmZ G dd dejZdS )z
Field-like classes that aren't really fields. It's easier to use objects that
have the same attributes as fields sometimes (avoids a lot of special casing).
    )fieldsc                   s    e Zd ZdZ fddZ  ZS )OrderWrtzn
    A proxy for the _order database field that is used when
    Meta.order_with_respect_to is specified.
    c                s"   d|d< d|d< t  j|| d S )NZ_ordernameFeditable)super__init__)selfargskwargs)	__class__ ?/tmp/pip-build-8app2_gc/Django/django/db/models/fields/proxy.pyr      s    zOrderWrt.__init__)__name__
__module____qualname____doc__r   __classcell__r   r   )r   r   r   	   s   r   N)r   Zdjango.db.modelsr   ZIntegerFieldr   r   r   r   r   <module>   s   