Changes between Version 10 and Version 11 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Apr 13, 2008, 11:28:09 AM (16 years ago)
Author:
mrts
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v10 v11  
    2626
    2727{{{
    28 $ grep -r '^[[:space:]]*global ' django/ | egrep -v '(\.svn|\.html|\.css|\.pyc|doctest)' | sort | uniq
     28$ grep -r '^[[:space:]]*global ' django/ | egrep -v '(\.svn|\.html|\.css|\.pyc|_doctest\.py)' | sort | uniq
    2929}}}
    3030
     
    4747
    4848{{{
    49 $ rgrep '^[[:alnum:]_]\+ *= *{' django | grep -v 'svn' | sort | uniq
     49$ rgrep '^[[:alnum:]_]\+ *= *{' django | egrep -v '(\.svn|_doctest\.py)' | sort
    5050}}}
    5151
     
    9393django/dispatch/dispatcher.py:sendersBack = {}
    9494django/template/__init__.py:libraries = {}
    95 django/test/_doctest.py:OPTIONFLAGS_BY_NAME = {}
    96 django/test/_doctest.py:__test__ = {"_TestClass": _TestClass,
    9795django/utils/dates.py:MONTHS = {
    9896django/utils/dates.py:MONTHS_3 = {
     
    115113
    116114=== Global lists ===
     115
     116{{{
     117$ rgrep '^[[:alnum:]_]\+ *= *\[' django | egrep -v '(\.svn|_doctest\.py)' | sort
     118}}}
     119
     120yields the following results
     121
     122{{{
     123django/conf/urls/defaults.py:__all__ = ['handler404', 'handler500', 'include', 'patterns', 'url']
     124django/core/servers/basehttp.py:__all__ = ['WSGIServer','WSGIRequestHandler','demo_app']
     125django/core/servers/fastcgi.py:__all__ = ["runfastcgi"]
     126django/db/models/fields/__init__.py:BLANK_CHOICE_DASH = [("", "---------")]
     127django/db/models/fields/__init__.py:BLANK_CHOICE_NONE = [("", "None")]
     128django/template/__init__.py:builtins = []
     129django/template/loaders/app_directories.py:app_template_dirs = []
     130django/utils/checksums.py:__all__ = ['luhn',]
     131django/utils/_decimal.py:__all__ = [
     132django/utils/_decimal.py:rounding_functions = [name for name in Decimal.__dict__.keys() if name.startswith('_round_')]
     133django/utils/_decimal.py:_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
     134django/utils/html.py:DOTS = ['·', '*', '\xe2\x80\xa2', '•', '•', '•']
     135django/utils/html.py:LEADING_PUNCTUATION  = ['(', '<', '&lt;']
     136django/utils/html.py:TRAILING_PUNCTUATION = ['.', ',', ')', '>', '\n', '&gt;']
     137django/utils/simplejson/decoder.py:__all__ = ['JSONDecoder']
     138django/utils/simplejson/decoder.py:ANYTHING = [
     139django/utils/simplejson/encoder.py:__all__ = ['JSONEncoder']
     140django/utils/simplejson/__init__.py:__all__ = [
     141django/utils/simplejson/scanner.py:__all__ = ['Scanner', 'pattern']
     142django/utils/translation/__init__.py:__all__ = ['gettext', 'gettext_noop', 'gettext_lazy', 'ngettext',
     143}}}
Back to Top