OwlCyberSecurity - MANAGER
Edit File: __init__.cpython-39.pyc
a hH�f�; � @ s� d Z ddlZddlZddlZddlZddlZddlmZ ddlZddl m Z ddlmZ ddl mZmZ ddlmZmZ dZd Zd ZdZdZd ZdZdZG dd� de�ZG dd� de�ZG dd� d�ZG dd� d�Ze� Z dS )z� Settings and configuration for Django. Read values from the module specified by the DJANGO_SETTINGS_MODULE environment variable, and then from django.conf.global_settings; see the global_settings.py for a list of all possible variables. � N)�Path)�global_settings)�ImproperlyConfigured)�RemovedInDjango50Warning�RemovedInDjango51Warning)� LazyObject�emptyZDJANGO_SETTINGS_MODULE�defaultZstaticfilesz�The USE_DEPRECATED_PYTZ setting, and support for pytz timezones is deprecated in favor of the stdlib zoneinfo module. Please update your code to use zoneinfo and remove the USE_DEPRECATED_PYTZ setting.z�The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale.zhThe CSRF_COOKIE_MASKED transitional setting is deprecated. Support for it will be removed in Django 5.0.zEThe DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead.zDThe STATICFILES_STORAGE setting is deprecated. Use STORAGES instead.c @ s e Zd ZdZdd� Zdd� ZdS )�SettingsReferencez� String subclass which references a current settings value. It's treated as the value in memory but serializes to a settings.NAME attribute reference. c C s t �| |�S �N)�str�__new__��self�value�setting_name� r �V/home/gouroczh/virtualenv/test/3.9/lib/python3.9/site-packages/django/conf/__init__.pyr ; s zSettingsReference.__new__c C s || _ d S r )r r r r r �__init__>