Permalink
...
Checking mergeability…
Don’t worry, you can still create the pull request.
lelit
commented on
trinaryouroboros
commented on
Comparing changes
Open a pull request
35
contributors
This comparison is big! We’re only showing the most recent
250
commits
Showing
with
17,048 additions
and 7,320 deletions.
- +5 −0 .gitignore
- +23 −0 .travis.yml
- +24 −0 AUTHORS
- +766 −0 CHANGES
- +87 −323 README.mkd
- +44 −0 debian/changelog
- +1 −0 debian/compat
- +51 −0 debian/control
- +52 −0 debian/copyright
- +12 −0 debian/pycassa-doc.doc-base
- +1 −0 debian/pycassa-doc.install
- +60 −0 debian/pycassaShell.1
- +7 −0 debian/python-pycassa.README.Debian
- +2 −0 debian/python-pycassa.docs
- +1 −0 debian/python-pycassa.manpages
- +33 −0 debian/rules
- +1 −0 debian/source/format
- +3 −0 debian/watch
- BIN doc/_static/favicon.ico
- +9 −4 doc/api/index.rst
- +75 −0 doc/api/pycassa.rst
- +16 −3 doc/api/pycassa/batch.rst
- +64 −3 doc/api/pycassa/columnfamily.rst
- +18 −3 doc/api/pycassa/columnfamilymap.rst
- +0 −5 doc/api/pycassa/connection.rst
- +34 −0 doc/api/pycassa/contrib/stubs.rst
- +17 −3 doc/api/pycassa/index.rst
- +0 −5 doc/api/pycassa/logger.rst
- +5 −0 doc/api/pycassa/logging/pool_stats_logger.rst
- +5 −0 doc/api/pycassa/logging/pycassa_logger.rst
- +50 −3 doc/api/pycassa/pool.rst
- +6 −0 doc/api/pycassa/system_manager.rst
- +20 −3 doc/api/pycassa/types.rst
- +5 −0 doc/api/pycassa/util.rst
- +81 −0 doc/assorted/column_family_map.rst
- +91 −0 doc/assorted/composite_types.rst
- +14 −0 doc/assorted/index.rst
- +131 −0 doc/assorted/pycassa_shell.rst
- +40 −0 doc/assorted/secondary_indexes.rst
- +42 −0 doc/assorted/super_columns.rst
- +54 −0 doc/assorted/time_uuid.rst
- +887 −7 doc/changelog.rst
- +14 −8 doc/conf.py
- +82 −0 doc/development.rst
- +34 −26 doc/index.rst
- +19 −1 doc/installation.rst
- +0 −377 doc/sphinxtogithub.py
- +196 −278 doc/tutorial.rst
- +46 −0 doc/using_with/celery.rst
- +12 −0 doc/using_with/eventlet.rst
- +9 −0 doc/using_with/index.rst
- +9 −0 doc/using_with/multiprocessing.rst
- +212 −230 ez_setup.py
- +9 −5 pycassa/__init__.py
- +141 −70 pycassa/batch.py
- +4,600 −1,018 pycassa/cassandra/Cassandra.py
- +5 −4 pycassa/cassandra/constants.py
- +1,699 −246 pycassa/cassandra/ttypes.py
- +964 −583 pycassa/columnfamily.py
- +181 −252 pycassa/columnfamilymap.py
- +187 −261 pycassa/connection.py
- 0 pycassa/contrib/__init__.py
- +256 −0 pycassa/contrib/stubs.py
- +59 −15 pycassa/index.py
- +0 −127 pycassa/logger.py
- 0 pycassa/logging/__init__.py
- +89 −0 pycassa/logging/pool_logger.py
- +138 −0 pycassa/logging/pool_stats_logger.py
- +110 −0 pycassa/logging/pycassa_logger.py
- +406 −0 pycassa/marshal.py
- +585 −1,052 pycassa/pool.py
- +0 −187 pycassa/queue.py
- +468 −0 pycassa/system_manager.py
- +287 −92 pycassa/types.py
- +205 −38 pycassa/util.py
- +258 −30 pycassaShell
- +5 −0 rpm-install-script.sh
- +73 −20 setup.py
- +6 −7 tests/README
- +32 −0 tests/__init__.py
- +0 −499 tests/cassandra.yaml
- 0 tests/contrib/__init__.py
- +237 −0 tests/contrib/stubs.py
- +0 −40 tests/log4j-server.properties
- +1,108 −341 tests/test_autopacking.py
- +93 −62 tests/test_batch_mutation.py
- +0 −194 tests/test_column_family_on_pool.py
- +595 −153 tests/test_columnfamily.py
- +190 −144 tests/test_columnfamilymap.py
- +0 −32 tests/test_connection.py
- +304 −566 tests/test_connection_pooling.py
- +133 −0 tests/test_pool_logger.py
- +140 −0 tests/test_system_manager.py
- +15 −0 tests/util.py
@@ -1,7 +1,12 @@ | ||
*.pyc | ||
*.swp | ||
*.swo | ||
+*.diff | ||
+bin/ | ||
build/ | ||
doc/_build | ||
dist/ | ||
+include/ | ||
+lib/ | ||
+man/ | ||
pycassa.egg-info/ |
23
.travis.yml
@@ -0,0 +1,23 @@ | ||
+language: python | ||
+python: | ||
+ - "2.6" | ||
+ - "2.7" | ||
+ | ||
+notifications: | ||
+ email: | ||
+ - hanno@hannosch.eu | ||
+ - pycassa.maintainer@gmail.com | ||
+ | ||
+services: | ||
+ - cassandra | ||
+ | ||
+before_script: | ||
+ # give some more time for Cassandra to finish startup and actually test it | ||
+ - sleep 10 | ||
+ - sudo service cassandra status | ||
+ | ||
+install: | ||
+ - python setup.py develop | ||
+ | ||
+script: | ||
+ - nosetests -v |

Oops, something went wrong.
Showing you all comments on commits in this comparison.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
lelit
commented on 67aef98
Jun 21, 2012
Is this right? A few lines up there's already a cfs.sort(), and at first sight that seems enough... Moreover, cfs seems a list of strings, not of CF instances... |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
Ah, you are correct, I was too hasty with that one. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment Hide comment
trinaryouroboros
commented on 6529a7d
Jul 20, 2013
Cool beans |
Is this right? A few lines up there's already a cfs.sort(), and at first sight that seems enough... Moreover, cfs seems a list of strings, not of CF instances...