Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-pymemcache-3.1.0-bp153.1.1 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python3-pymemcache Distribution: SUSE Linux Enterprise 15 SP3
Version: 3.1.0 Vendor: openSUSE
Release: bp153.1.1 Build date: Wed May 5 06:47:58 2021
Group: Development/Languages/Python Build host: lamb27
Size: 513500 Source RPM: python-pymemcache-3.1.0-bp153.1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/Pinterest/pymemcache
Summary: A pure Python memcached client
A pure-Python memcached client.

pymemcache supports the following features:

* Complete implementation of the memcached text protocol.
* Configurable timeouts for socket connect and send/recv calls.
* Access to the "noreply" flag, which can significantly increase the speed of writes.
* Flexible, simple approach to serialization and deserialization.
* The (optional) ability to treat network and memcached errors as cache misses.

Provides

Requires

License

Apache-2.0

Changelog

* Tue May 12 2020 Dirk Mueller <dmueller@suse.com>
  - update to 3.1.0:
    * Add TLS support for TCP sockets.
    * Fix corner case when dead hashed server comes back alive.
* Thu Apr 23 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Fix build without python 2
* Mon Mar 23 2020 pgajdos@suse.com
  - version update to 3.0.1
    * Make MockMemcacheClient more consistent with the real client.
    * Pass ``encoding`` from HashClient to its pooled clients when ``use_pooling``
      is enabled.
* Fri Mar 20 2020 Marketa Calabkova <mcalabkova@suse.com>
  - Update to 3.0.0
    * The serialization API has been reworked. Instead of consuming a serializer
      and deserializer as separate arguments, client objects now expect an argument
      ``serde`` to be an object which implements ``serialize`` and ``deserialize``
      as methods. (``serialize`` and ``deserialize`` are still supported but
      considered deprecated.)
    * Validate integer inputs for ``expire``, ``delay``, ``incr``, ``decr``, and
      ``memlimit`` -- non-integer values now raise ``MemcacheIllegalInputError``
    * Validate inputs for ``cas`` -- values which are not integers or strings of
      0-9 now raise ``MemcacheIllegalInputError``
    * Add ``prepend`` and ``append`` support to ``MockMemcacheClient``.
    * Add the ``touch`` method to ``HashClient``.
    * Added official support for Python 3.8.
* Tue Sep 10 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 2.2.2:
    * Fix long_description string in Python packaging.
    * Fix flags when setting multiple differently-typed values at once.
    * Use setup.cfg metadata instead setup.py config to generate package.
    * Add default_noreply parameter to HashClient.
    * Add encoding parameter to Client constructors (defaults to ascii).
    * Add flags parameter to write operation methods.
    * Handle unicode key values in MockMemcacheClient correctly.
    * Improve ASCII encoding failure exception.
    * Fix setup.py dependency on six already being installed.
* Mon Mar 18 2019 Jan Engelhardt <jengelh@inai.de>
  - Trim filler wording from descriptions.
* Wed Feb 27 2019 Thomas Bechtold <tbechtold@suse.com>
  - update to 2.1.0:
    * Check reStructuredText along with flake8
    * Hotfix broken path
    * fix result
    * Update changelog
    * Fix syntax errors
    * Use byte strings after serializing with serde
    * correct spelling mistake
    * Remove deprecated Python version.
    * Add tests for serde module
    * Kill python 2.6
    * Add optional support for unicode keys
    * Update README to mention tox
    * Fix support newbytes from future
    * Final touches for 1.3.7
    * Make tuple once, instead of on every call
    * Use only the highest, premium quality picklers available at runtime.
    * Enforce version for sphinx
    * Don't Raise Generic Exception (#164)
    * DocString: `gets` returns values, not keys
    * Always send command keys in their original order
    * Bump version to 1.4.3
    * Bump version to 1.4.2
    * Bump version to 1.4.1
    * Bump version to 1.4.0
    * Import Classes, Function into package level
    * new Patch version for minor change
    * trevor sucks
    * Remove docs from being run when you're running tests
    * Add integration environment to tox
    * Remove py26 detritus from .travis.yml (#181)
    * We only need to import cPickle explicitly if Python 2
    * Add test for subclasses of builtin types
    * Added default parameter support for "get" and "gets" methods in Client
    * Always close the existing socket on _connect() (#208)
    * Add support for stats cachedump
    * Add test coverage for the 'cache_memlimit' command
    * Comparing ord(character) so its compatible with python 2 and 3
    * Introduce some missing .set() assertions
    * Add Code of Conduct and Contributing guides
    * Finish preparing the 2.1.0 release
    * Make serde use BytesIO for Python 3 compat
    * fixed markdown syntax to rst link format (#205)
    * Test against py35 and py36
    * Update ChangeLog.rst
    * Release 1.3.7
    * Return default value instead of False when all clients are down
    * Make pickle version for python_memcache_serializer adjustable
    * Add virtualenv env/ and .cache/ to gitignore
    * remove suggestion to use python-clandestined
    * add delete and delete_multi benchmarks
    * Fix typo in doc
    * Bump version
    * split benchmarks by method and include get_multi and set_multi
    * Fixed a small typo in the doc string of the pooled client
    * Add Nicholas Charriere to contributors :D
    * Remove 'sudo: false' from Travis configuration (#204)
    * Update release notes for version 2.0.0
    * fix return object
    * ensure that client 'if not self.sock: self._connect()' behavior is tested
    * minor tweaks for an extra 7.5% gain
    * Prevent pytest-warning on pytest 3.0+
    * Add CODEOWNERS listing global project reviewers (#203)
    * Bump docs' the copyright year to 2018
    * Improve MemcacheIllegalInputError messages
    * add validation code with NOT_STORED
    * Start a list of project adopters
    * Improve syntax
    * Bumpversion
    * allow friendly imports
    * removed apidoc directory from repo
    * update comparison to pylibmc
    * Raising MemcacheIllegalInputError when a key contains null byte, new line, or carriage return
    * Fixed docs
    * fix ChangeLog.rst
    * Clean up some changelog links
    * Use simpler Travis pip caching syntax
    * refactor BaseClient._store_cmd() to handle multiple key-value pairs so set_many can work as desired
    * Use a bytes string
    * Add gevent to test-requirements
    * Simplify README for running tests. Only tox
    * Use cPickle for six.moves
    * test for default_noreply for both clients
    * Added changelog
    * gevent 1.3 is required for Python 3.7 support
    * Switch to is bytes for bytes comparision
    * Improve the cache_memlimit documentation
    * Renaming byte to character
    * Improve serde
    * typo: alwais -> always
    * Update getting_started.rst
    * gevent 1.3.6 has some additional Python 3.7 fixes
    * Refactor _delete_many() to batch its keys
    * Fixes tox six pkg ImportError #198 (#199)
    * Switch to an SVG Travis-CI build badge (#207)
    * added OK as acceptable response
    * Test for expected flags with serde tests
    * Bump version to 2.0.0
    * Add UNIX domain socket support (#206)
    * Changelog for 1.4.2
    * Add gets_many to HashClient.
    * Iterating over characters in key once
    * Using bytearray
    * Add that we're hiring on README
    * Use cPickle as pickle if available
    * Add cPickle change to Changelog
    * Exclude well-known non-code paths from flake8
    * Imports the right path in doc building step
    * Make restriction wider to avoid breaking client
    * Fix #117, illegal unicode character in middle of key (or value now)
    * add apidoc to .gitignore
    * Lint with Python 3.4 too
    * Bump version to 1.3.8
    * Doc about keys
    * Fix flake8 issues
    * Added Python 3.5 and 3.6 to the build.
    * Make line length reqs explicit
    * Fixed stats evictions conversion
    * Reverse backwards compatible change
    * Add more serde unit tests for bytes/unicode
    * Add a few more serde integration tests
    * Fix #99 unsanitized input
    * fix failed keys
    * fix pep8
    * Ensure serde integration tests return the same type
    * Try fix import error six
    * Fix flake8 and cleanup build
    * Update documentation to cover serde module
    * Add changelog for 1.4.1
    * Updating exception message
    * Preparing for release 1.3.6: adding bumpversion config and changelog
    * fix comment for set_many
    * Run full benchmark test in travis
    * Automate doc building
    * refactor
    * Fix the MockMemcacheClient implementation
    * Add pypy3 to travis test matrix
    * Changelog changes for 1.4.3
    * Add default_noreply property to PooledClient
    * Add FLAG_BYTES
    * Moving test cases
    * Assert bytes string
    * Add failing test of MockMemcacheClient serializer/deserializer
    * Omit test/* code from the coverage report
    * Have MockMemcacheClient support non-ascii strings (#169)
    * Start preparing the 2.1.0 release (#202)
    * Use is type for type comparisons
    * fix implementation HashClient
    * Make serde import on Python 3
    * Close client socket if it fails to connect (#165)
    * Add official Python 3.7 support
    * Adding test case for null character
    * Fix encode/decode wrong way around
    * Add integration test for serde serialization
    * Improve stats parsing
    * Parse version directly from pymemcache/__init__.py
    * Fix an issue in Travis where the build breaks because of a gevent bump
    * Mention the `no_delay` connection flag
    * PooledClient now use default_noreply arg set on init
    * Convert readthedocs link for their .org -> .io migration for hosted projects
    * simplify and speed up _check_key() performance
    * fix test
  - Convert to singlespec
* Tue Nov 21 2017 dmueller@suse.com
  - update to 1.2.9:
    * Introduced PooledClient a thread-safe pool of clients
* Sun Mar 13 2016 dmueller@suse.com
  - add LICENSE.txt
* Tue Feb 24 2015 tbechtold@suse.com
  - update to 1.2.8:
    * Increasing version number for pypi
    * Merge pull request #30 from methane/patch-1
    * Move nose to tests_requires
    * Bumping version to fix upload issues with pypi
    * Adding James Socol to contributors and bumping version for pypi
    * Merge pull request #27 from jsocol/connect-error
    * Include _connect in ignore_exc try/except block
    * Adding the LICENSE.txt file to the distribution

Files

/usr/lib/python3.6/site-packages/pymemcache
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/pymemcache-3.1.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/pymemcache/__init__.py
/usr/lib/python3.6/site-packages/pymemcache/__pycache__
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/exceptions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/exceptions.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/fallback.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/fallback.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/pool.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/pool.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/serde.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/__pycache__/serde.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client
/usr/lib/python3.6/site-packages/pymemcache/client/__init__.py
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/base.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/base.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/hash.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/hash.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/murmur3.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/murmur3.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/rendezvous.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/__pycache__/rendezvous.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/client/base.py
/usr/lib/python3.6/site-packages/pymemcache/client/hash.py
/usr/lib/python3.6/site-packages/pymemcache/client/murmur3.py
/usr/lib/python3.6/site-packages/pymemcache/client/rendezvous.py
/usr/lib/python3.6/site-packages/pymemcache/exceptions.py
/usr/lib/python3.6/site-packages/pymemcache/fallback.py
/usr/lib/python3.6/site-packages/pymemcache/pool.py
/usr/lib/python3.6/site-packages/pymemcache/serde.py
/usr/lib/python3.6/site-packages/pymemcache/test
/usr/lib/python3.6/site-packages/pymemcache/test/__init__.py
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/conftest.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/conftest.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_benchmark.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_benchmark.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_client.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_client.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_client_hash.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_client_hash.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_integration.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_integration.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_rendezvous.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_rendezvous.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_serde.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_serde.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/test_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/pymemcache/test/conftest.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_benchmark.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_client.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_client_hash.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_integration.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_rendezvous.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_serde.py
/usr/lib/python3.6/site-packages/pymemcache/test/test_utils.py
/usr/lib/python3.6/site-packages/pymemcache/test/utils.py
/usr/share/doc/packages/python3-pymemcache
/usr/share/doc/packages/python3-pymemcache/README.rst
/usr/share/licenses/python3-pymemcache
/usr/share/licenses/python3-pymemcache/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024