0
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Feb 09, 2025 — Feb 09, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Remove duplicate functions found by matth More... almost 15 years ago
Convert TimeUtils utilities to datetime_tz, so it's compatible with 1.12+ More... about 15 years ago
Added tests for string-constants, and TODOs that it would be nice to iterate in order of definition (see #1411 for where this was needed) More... about 15 years ago
Allow derived classes to specify that there constants are something other than `int`s (see #1411 where we want a test status class with string values corresponding to db constants) More... about 15 years ago
Simplify our elementtree options, as lxml has an implementation we can assume will be present (as lxml is a required dependency now) Add a function for easy fast parsing in lxml etree More... about 15 years ago
Fixes to ElementTree imports for Python 2.7 More... over 15 years ago
Implement _encode_entity correctly for Python 2.7 More... over 15 years ago
Add an implementation of _encode_entity (which has gone missing) which will hopefully work Upgrade to 2.7 More... over 15 years ago
On Python 2.7, _encode_entity doesn't seem to exist More... over 15 years ago
Changed `remove_(below,above)` to `remove_(gt,lt)` to match the operator names, and added `le` and `ge` versions. Implemented a generic `remove_cmp_op` to simplify code and so we can pass any `operator` in. See #4229 More... over 15 years ago
Added caching of minimum and maximum values on the set. Intelligently update these based on the method being called. See #4229 More... over 15 years ago
Check that alterations to the semi-sorted set don't mess up the min and max functions. See #4229 More... over 15 years ago
Added basic unoptimized `SemiSortedSet` implementation and tests. See #4229 More... over 15 years ago
Support wrapping C functions... See #4229 (derived class of `set` will require this) More... over 15 years ago
Add the reason for skipping the test into a skip event More... over 15 years ago
Disable test which doesn't reliably pass (it's there to demonstrate a race condition which we fix) More... over 15 years ago
Make two tests, one of which shows the issue come across in #3751 and one of which checks our fix More... over 15 years ago
e the safe strptime See #3751 More... over 15 years ago
Add a safe strptime which locks to keep it thread-safe See #3751 More... over 15 years ago
Seems like this is a bit of pressure for windows systems. Give them some breathing space. More... over 15 years ago
Added a separate switch for disabling ''local'' caches. This assumes that a cache class or object can declare itself as local, in which case it should be disabled when global caches shouldn't be. See #3507 More... almost 16 years ago
Added support for globally disabling all time caches (and tests). Set this based on server mode. See #3507 * Note that this is over-kill - it doesn't just disable the database cache but also template caches. More... almost 16 years ago
Extended EnumClass to support looking up constant, iterating over constants, and handling default arguments. See #3507 More... almost 16 years ago
Add short wait after events received for threads to stop - otherwise were getting erroneous failures. Also show str(thread) from before the thread was stopped in the case of an error More... almost 16 years ago
Backwards compatibility with Python 2.5 threading API More... almost 16 years ago
pad ticks missed with leading zeroes so that strings can be sorted for eyeballing - see #3092 - won't help this time (we already have the logs), but will help in future cases with the same symptoms
d3vid
as dseaward
More... almost 16 years ago
Extend test as Windows is a bit slower at locking/unlocking More... about 16 years ago
Added standard blocking behaviour if `wait == True`, and make that the default. Use non-blocking if `not wait`, otherwise enter wait loop. This makes this more consistent with the standard `Lock` API. See #2755 More... about 16 years ago
Events only support `is_set` from Python 2.6+ - switching back to `isSet` for Python 2.5 compatibility More... about 16 years ago
Added `TimedLock` module that allows you to wait for a limited amount of time when acquiring a lock, and tests. See #2755 More... about 16 years ago