-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4064 from pymedusa/develop
Merge develop for release 0.2.2
- Loading branch information
Showing
1,920 changed files
with
100,383 additions
and
44,239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
static/js/vender.js | ||
static/js/lib/* | ||
|
||
ext/** | ||
lib/** | ||
|
||
themes/** | ||
themes-default/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from __future__ import absolute_import | ||
import sys | ||
__future_module__ = True | ||
|
||
if sys.version_info[0] < 3: | ||
from dummy_thread import * | ||
else: | ||
raise ImportError('This package should not be accessible on Python 3. ' | ||
'Either you are trying to run from the python-future src folder ' | ||
'or your installation of python-future is corrupted.') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from __future__ import absolute_import | ||
import sys | ||
__future_module__ = True | ||
|
||
if sys.version_info[0] < 3: | ||
from markupbase import * | ||
else: | ||
raise ImportError('This package should not be accessible on Python 3. ' | ||
'Either you are trying to run from the python-future src folder ' | ||
'or your installation of python-future is corrupted.') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from __future__ import absolute_import | ||
import sys | ||
__future_module__ = True | ||
|
||
if sys.version_info[0] < 3: | ||
from thread import * | ||
else: | ||
raise ImportError('This package should not be accessible on Python 3. ' | ||
'Either you are trying to run from the python-future src folder ' | ||
'or your installation of python-future is corrupted.') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from __future__ import absolute_import | ||
import sys | ||
__future_module__ = True | ||
|
||
if sys.version_info[0] < 3: | ||
from __builtin__ import * | ||
# Overwrite any old definitions with the equivalent future.builtins ones: | ||
from future.builtins import * | ||
else: | ||
raise ImportError('This package should not be accessible on Python 3. ' | ||
'Either you are trying to run from the python-future src folder ' | ||
'or your installation of python-future is corrupted.') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
""" | ||
__author__ = 'Eric Larson' | ||
__email__ = '[email protected]' | ||
__version__ = '0.12.3' | ||
__version__ = '0.12.4' | ||
|
||
from .wrapper import CacheControl | ||
from .adapter import CacheControlAdapter | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.