ó
TR¹Nc           @   s3   d  Z  d d l m Z d e j f d „  ƒ  YZ d S(   sž   
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).
iÿÿÿÿ(   t   fieldst   OrderWrtc           B   s   e  Z d  Z d „  Z RS(   sn   
    A proxy for the _order database field that is used when
    Meta.order_with_respect_to is specified.
    c         O   s1   d | d <t  | d <t t |  ƒ j | | Ž  d  S(   Nt   _ordert   namet   editable(   t   Falset   superR   t   __init__(   t   selft   argst   kwargs(    (    sJ   /home/panlixing/Python_Projects/gaeseries/django/db/models/fields/proxy.pyR      s    

(   t   __name__t
   __module__t   __doc__R   (    (    (    sJ   /home/panlixing/Python_Projects/gaeseries/django/db/models/fields/proxy.pyR      s   N(   R   t   django.db.modelsR    t   IntegerFieldR   (    (    (    sJ   /home/panlixing/Python_Projects/gaeseries/django/db/models/fields/proxy.pyt   <module>   s   