summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix key ordering failure in doctestsTim Graham2017-11-011-7/+6
| |
* | Fix typo in get_multi() docstringCharles Chan2017-10-301-1/+1
| |
* | Add testing for Python 3.6Tim Graham2017-10-304-2/+4
| |
* | Remove testing for Python 3.3Tim Graham2016-12-214-4/+2
| |
* | Adding back in py33 because removing didn't help.Sean Reifschneider2016-12-171-1/+1
| |
* | Removing py33 since flake8 seems to be having a bug checking it.Sean Reifschneider2016-12-171-1/+1
| |
* | #112 Cleaning up flake8 alertsSean Reifschneider2016-12-173-5/+6
| |
* | Adding notes about changes.Sean Reifschneider2016-12-171-0/+15
| |
* | Merge pull request #112 from timgraham/flake8Sean Reifschneider2016-12-173-9/+12
|\ \ | | | | | | Add flake8 check to Travis
| * | Add flake8 check to TravisTim Graham2016-12-173-9/+12
|/ /
* | Merge pull request #111 from timgraham/has_unicodeSean Reifschneider2016-12-172-22/+0
|\ \ | | | | | | Remove unused _has_unicode/_str_cls vars
| * | Remove unused _has_unicode/_str_cls varsTim Graham2016-12-162-22/+0
| | | | | | | | | | | | Unused since 04f1c78c13bd54050b1d2d3baa9e86d9e79b3629.
* | | Merge pull request #113 from timgraham/returnSean Reifschneider2016-12-171-8/+5
|\ \ \ | | | | | | | | Remove unnecessary parentheses in return statements
| * | | Remove unnecessary parentheses in return statementsTim Graham2016-12-161-8/+5
| |/ /
* | | Merge pull request #115 from timgraham/drop-py2632Sean Reifschneider2016-12-173-5/+1
|\ \ \ | | | | | | | | Fix #109: Remove testing for Python 2.6 and 3.2
| * | | Fix #109: Remove testing for Python 2.6 and 3.2Tim Graham2016-12-173-5/+1
|/ / /
* | | Merge pull request #105 from romuald/typo-docstringSean Reifschneider2016-12-171-7/+7
|\ \ \ | | | | | | | | Fix some typos in docstrings
| * | | Fix some typos in docstringsRomuald Brunet2016-12-011-7/+7
| |/ /
* | | Merge pull request #110 from timgraham/py35Sean Reifschneider2016-12-173-2/+4
|\ \ \ | |/ / |/| | Add testing for Python 3.5
| * | Add testing for Python 3.5Tim Graham2016-12-143-2/+4
|/ /
* | Version changes for release.1.58Sean Reifschneider2016-05-272-2/+1
| |
* | Adding changelog entries.Sean Reifschneider2016-05-271-0/+19
| |
* | Merge branch 'oremj-fix_delete_defaults'Sean Reifschneider2016-05-272-3/+7
|\ \
| * | Readme changes for delete() time=None changeSean Reifschneider2016-05-272-3/+7
|/ /
* | Merge pull request #81 from ↵Sean Reifschneider2016-05-271-1/+1
|\ \ | | | | | | | | | | | | pipermerriam/piper/pin-six-at-version-with-PY2-property Pin six at version with PY2 property
| * | Pin six at version with PY2 propertyPiper Merriam2015-09-151-1/+1
| | |
* | | Merge pull request #82 from dieselmachine/72-version-discrepanciesSean Reifschneider2016-05-272-2/+3
|\ \ \ | | | | | | | | (#72) setup.py will now pull the version number directly from memcach…
| * | | (#72) setup.py will now pull the version number directly from memcache.py ↵JT2015-10-012-2/+3
| |/ / | | | | | | | | | (using setuptools.depends.get_module_constant) in order to prevent discrepancies
* | | Merge pull request #91 from bartTC/masterSean Reifschneider2016-05-271-2/+2
|\ \ \ | | | | | | | | Python3: `get_stats` function fails due to Bytestring encoding errors
| * | | 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
|\ \ \ | | | | | | | | Adding support for "stats slabs" statistics
| * | | fixing indentation 2grg3502016-05-091-1/+1
| | | |
| * | | fixing indentationgrg3502016-05-091-1/+1
| | | |
| * | | Adding support for "stats slabs" statisticsraj.gurung2016-05-091-0/+31
| |/ /
* | | Merge pull request #86 from edmorley/python2-pickle-perfSean Reifschneider2016-05-261-1/+6
|\ \ \ | |/ / |/| | Use cPickle with Python 2 again, to fix v1.54 performance regression
| * | Use cPickle with Python 2 again, to fix v1.54 performance regressionEd Morley2016-01-071-1/+6
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some Python 3 compatibility changes made python-memcached import pickle rather than cPickle, since the latter isn't available on Python 3: https://github.com/linsomniac/python-memcached/commit/45403325e0249ff0f61d6ae449a7daeeb7e852e5 This is fine on Python 3, since importing pickle will automatically use the faster C implementation if available, however with Python 2 this caused a 400% slowdown in memcache gets between python-memcached v1.53 and v1.54, when dealing with objects other than bytes. This mostly fixes #71, though there is still a 10-20% performance drop using current master plus this change compared to v1.53 (using Python 2.7.10).
* | Changing assertIs from last patch to assertTrue.Sean Reifschneider2015-08-021-1/+1
| |
* | Fixing tests for PEP8.Sean Reifschneider2015-08-021-2/+0
| |
* | Adding unittest backport to 2.6.Sean Reifschneider2015-08-021-1/+1
| |
* | Merge branch 'haypo-py3'Sean Reifschneider2015-08-024-326/+96
|\ \
| * \ Merge branch 'py3' of ssh://github.com/haypo/python-memcached into haypo-py3Sean Reifschneider2015-08-024-326/+96
| |\ \ |/ / / | | | | | | | | | Conflicts: tests/test_memcache.py
| * | More Python 3 fixesVictor Stinner2015-07-274-324/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Port set_multi() to Python 3 * Port delete_multi() to Python 3 * Fix _get_server() on Python 3 when the connection to the first server fails: encode to ASCII before calling serverHashFunction. * Fix expect(): don't decode line on Python 3, return the raw line * Add more unit tests * tox now also runs unit tests * Explicit the encoding when calling str.encode(): use 'utf-8' * test_memcache: close sockets in tearDown() * test_get_unknown_value(): delete the key to ensure that it doesn't exist
* | | Merge pull request #78 from nicholasserra/nicholasserra-boolean-testSean Reifschneider2015-07-311-0/+3
|\ \ \ | | | | | | | | Test for set/get boolean values.
| * | | Test for set/get boolean values.Nicholas Serra2015-07-311-0/+3
| | | |
* | | | Release automation.Sean Reifschneider2015-07-313-14/+35
|/ / /
* | | Fix for value being boolean in set().release-1.57Sean Reifschneider2015-07-312-2/+9
|/ /
* | For 1.56 release.release-1.56Sean Reifschneider2015-07-261-1/+1
| |
* | Updating version in memcache.pySean Reifschneider2015-07-261-1/+1
| |
* | Updating changelog.release-1.55Sean Reifschneider2015-07-261-0/+6
| |
* | Merge pull request #67 from haypo/py3Sean Reifschneider2015-07-265-101/+158
|\ \ | | | | | | Port memcache to Python 3