summaryrefslogtreecommitdiff
path: root/memcache.py
Commit message (Expand)AuthorAgeFilesLines
* Fix #79, #80 -- Fix storing non-ASCII values on Python 2 and binary values on...Nicolas NoƩ2017-11-141-9/+13
* Fix crash on Python 3 in touch() loggingMatt Davis2017-11-141-1/+1
* Fix key ordering failure in doctestsTim Graham2017-11-011-7/+6
* Fix typo in get_multi() docstringCharles Chan2017-10-301-1/+1
* #112 Cleaning up flake8 alertsSean Reifschneider2016-12-171-2/+3
* Add flake8 check to TravisTim Graham2016-12-171-6/+6
* Merge pull request #111 from timgraham/has_unicodeSean Reifschneider2016-12-171-11/+0
|\
| * Remove unused _has_unicode/_str_cls varsTim Graham2016-12-161-11/+0
* | Merge pull request #113 from timgraham/returnSean Reifschneider2016-12-171-8/+5
|\ \
| * | Remove unnecessary parentheses in return statementsTim Graham2016-12-161-8/+5
| |/
* | Fix some typos in docstringsRomuald Brunet2016-12-011-7/+7
|/
* Readme changes for delete() time=None changeSean Reifschneider2016-05-271-3/+3
* Merge pull request #82 from dieselmachine/72-version-discrepanciesSean Reifschneider2016-05-271-1/+1
|\
| * (#72) setup.py will now pull the version number directly from memcache.py (us...JT2015-10-011-1/+1
* | Merge pull request #91 from bartTC/masterSean Reifschneider2016-05-271-2/+2
|\ \
| * | Fixed Python3 Bytestring decoding error in get_stats.Martin Mahner2016-03-191-2/+2
| |/
* | Merge pull request #93 from grg350/masterSean Reifschneider2016-05-271-0/+31
|\ \
| * | fixing indentation 2grg3502016-05-091-1/+1
| * | fixing indentationgrg3502016-05-091-1/+1
| * | Adding support for "stats slabs" statisticsraj.gurung2016-05-091-0/+31
| |/
* | Use cPickle with Python 2 again, to fix v1.54 performance regressionEd Morley2016-01-071-1/+6
|/
* Merge branch 'py3' of ssh://github.com/haypo/python-memcached into haypo-py3Sean Reifschneider2015-08-021-245/+28
|\
| * More Python 3 fixesVictor Stinner2015-07-271-245/+28
* | Fix for value being boolean in set().release-1.57Sean Reifschneider2015-07-311-2/+2
|/
* Updating version in memcache.pySean Reifschneider2015-07-261-1/+1
* Port memcache to Python 3Victor Stinner2015-04-231-89/+149
* updating comment to account for -I optionDave Forgac2014-10-111-3/+4
* Merge pull request #50 from cactus/support-alternate-compressionSean Reifschneider2014-09-271-20/+10
|\
| * add support for pluggable compressor/decompressorelij2014-08-241-20/+10
* | Merge pull request #49 from cactus/noreplySean Reifschneider2014-09-271-43/+110
|\ \
| * | CAS supports noreply tooelij2014-08-251-2/+2
| * | add support for noreplyelij2014-08-241-41/+108
| |/
* | Fixes for empty/None keys.Sean Reifschneider2014-09-241-1/+12
* | MemcachedKeyCharacterError better describes errorSean Reifschneider2014-09-211-1/+1
|/
* pep8: H201 no 'except:' at least use 'except Exception:'Marc Abramowitz2014-06-091-1/+1
* pep8: E227 missing whitespace around bitwise or shift operatorMarc Abramowitz2014-06-091-1/+1
* pep8: F402 import 'pickle' from line 52 shadowed by loop variableMarc Abramowitz2014-06-091-1/+0
* pep8: H405 multi line docstring summary not separated with an empty lineMarc Abramowitz2014-06-091-4/+13
* pep8: E711 comparison to None should be 'if cond is None:'Marc Abramowitz2014-06-091-4/+4
* pep8: E265 block comment should start with '# 'Marc Abramowitz2014-06-091-13/+13
* Clean up long lines for pep8Marc Abramowitz2014-06-091-7/+8
* Sort imports for pep8Marc Abramowitz2014-06-091-3/+4
* Resolving conflicts from cabrera-py33_fixes.Sean Reifschneider2014-06-071-316/+413
* Complete the Python3 work!Alex Gaynor2014-05-101-1/+1
* Merge pull request #42 from alex/iterkeysSean Reifschneider2014-05-101-5/+5
|\
| * Removed usage of iterkeys for python3Alex Gaynor2014-05-101-5/+5
* | Included Python3 changes from Dustin OpreaSean Reifschneider2014-05-101-5/+19
|/
* Merge pull request #41 from alex/stringio-py3kSean Reifschneider2014-05-101-7/+4
|\
| * Use io.BytesIO() in favor of StringIO to be python3 friendlyAlex Gaynor2014-05-101-7/+4
* | Fixing connection-dead subscript issue.Sean Reifschneider2014-05-101-1/+1