summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-06-16 04:20:23 +0300
committerTim Graham <timograham@gmail.com>2016-06-15 21:20:38 -0400
commitefe98743718d694e5cb35cd5b99de8b1cabe658f (patch)
tree1f0a3b8bca9934e5b66123531ca41f393bef5ca4 /django/core
parentf9b3a6a76f51395a77ab77a8784851549400bbed (diff)
[1.10.x] Fixed broken links in docs and comments.
Backport of 96f97691ad5e1483263cea3bb4e4021b4c8dcc41 from master
Diffstat (limited to 'django/core')
-rw-r--r--django/core/cache/backends/memcached.py2
-rw-r--r--django/core/files/temp.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/django/core/cache/backends/memcached.py b/django/core/cache/backends/memcached.py
index 1573746329..ee6b3b7712 100644
--- a/django/core/cache/backends/memcached.py
+++ b/django/core/cache/backends/memcached.py
@@ -53,7 +53,7 @@ class BaseMemcachedCache(BaseCache):
timeout = -1
if timeout > 2592000: # 60*60*24*30, 30 days
- # See http://code.google.com/p/memcached/wiki/NewProgramming#Expiration
+ # See https://github.com/memcached/memcached/wiki/Programming#expiration
# "Expiration times can be set from 0, meaning "never expire", to
# 30 days. Any time higher than 30 days is interpreted as a Unix
# timestamp date. If you want to expire an object on January 1st of
diff --git a/django/core/files/temp.py b/django/core/files/temp.py
index f70d975dbe..f02cfca591 100644
--- a/django/core/files/temp.py
+++ b/django/core/files/temp.py
@@ -12,7 +12,7 @@ processes in a manner that works across platforms.
Also note that the custom version of NamedTemporaryFile does not support the
full range of keyword arguments available in Python 2.6+ and 3.0+.
-1: https://mail.python.org/pipermail/python-list/2005-December/336958.html
+1: https://mail.python.org/pipermail/python-list/2005-December/336957.html
2: http://bugs.python.org/issue14243
"""