]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/log
thirdparty/sqlalchemy/sqlalchemy.git
19 years agofixed up boolean datatype for sqlite, mysql, ms-sql
Mike Bayer [Thu, 13 Jul 2006 01:12:53 +0000 (01:12 +0000)] 
fixed up boolean datatype for sqlite, mysql, ms-sql

19 years agostill having mappers not getting compiled...sigh...
Mike Bayer [Wed, 12 Jul 2006 20:19:32 +0000 (20:19 +0000)] 
still having mappers not getting compiled...sigh...

19 years agoprimary key identifier is a list now, not param list, [ticket:236]
Mike Bayer [Wed, 12 Jul 2006 19:02:53 +0000 (19:02 +0000)] 
primary key identifier is a list now, not param list, [ticket:236]

19 years agoclarified passivedefault only for INSERT, added brief 'override reflected columns...
Mike Bayer [Wed, 12 Jul 2006 16:44:18 +0000 (16:44 +0000)] 
clarified passivedefault only for INSERT, added brief 'override reflected columns' example

19 years agoslightly less lame version function
Mike Bayer [Tue, 11 Jul 2006 01:12:02 +0000 (01:12 +0000)] 
slightly less lame version function

19 years agosqlite detects version and disables CAST if version < 3.2.3
Mike Bayer [Tue, 11 Jul 2006 00:36:32 +0000 (00:36 +0000)] 
sqlite detects version and disables CAST if version < 3.2.3
fixes to unittests, mapper extension to work better with setting/unsetting extensions
objectstore objects get 'session' attribute

19 years agoexpunge wasnt de-associating the object with a session
Mike Bayer [Mon, 10 Jul 2006 23:05:03 +0000 (23:05 +0000)] 
expunge wasnt de-associating the object with a session

19 years agoactivemapper will use threadlocal mod's objectstore if its installed
Mike Bayer [Mon, 10 Jul 2006 21:53:49 +0000 (21:53 +0000)] 
activemapper will use threadlocal mod's objectstore if its installed
both objectstores no longer subclass SessionContext, get at it via .context attribute instead

19 years agoadjument to regexp for parsing courtesy Barry Warsaw
Mike Bayer [Mon, 10 Jul 2006 21:33:03 +0000 (21:33 +0000)] 
adjument to regexp for parsing courtesy Barry Warsaw

19 years agofix to error message for object with mismatched session
Mike Bayer [Mon, 10 Jul 2006 21:32:34 +0000 (21:32 +0000)] 
fix to error message for object with mismatched session

19 years agohey ho alphas got to go
Mike Bayer [Mon, 10 Jul 2006 01:12:12 +0000 (01:12 +0000)] 
hey ho alphas got to go

19 years agoworks without backrefs too....
Mike Bayer [Mon, 10 Jul 2006 01:06:31 +0000 (01:06 +0000)] 
works without backrefs too....

19 years agosome refactorings to activemapper, made relationship() class have some polymorphic...
Mike Bayer [Sun, 9 Jul 2006 19:48:02 +0000 (19:48 +0000)] 
some refactorings to activemapper, made relationship() class have some polymorphic behavior for initializing its real relation, added support + unittest for self-referential relationship

19 years agoadded workaround for funny pragma behavior on windows pysqlite
Mike Bayer [Sun, 9 Jul 2006 17:58:01 +0000 (17:58 +0000)] 
added workaround for funny pragma behavior on windows pysqlite
singletonthreadpool has a dispose() method, used by proxy_engine test
to better clean up after itself on windows

19 years agosmall fix to relation compilation
Mike Bayer [Sun, 9 Jul 2006 00:39:24 +0000 (00:39 +0000)] 
small fix to relation compilation

19 years ago0.2.5 rel_0_2_5
Mike Bayer [Sat, 8 Jul 2006 17:11:58 +0000 (17:11 +0000)] 
0.2.5

19 years agotook out that whole compilation dependency thing. just need to loop through mapper_r...
Mike Bayer [Sat, 8 Jul 2006 16:07:16 +0000 (16:07 +0000)] 
took out that whole compilation dependency thing.  just need to loop through mapper_registry and compile whatever is not compiled. the "non-reentrant" compile() method, which is a product of the whole compilation dependency tangent, makes this pretty easy.  So it was a pretty roundabout way to go for ultimately a pretty small change to compilation.

19 years agomade mapper compilation "check for remaining mappers" compile anything found, guarant...
Mike Bayer [Fri, 7 Jul 2006 21:32:30 +0000 (21:32 +0000)] 
made mapper compilation "check for remaining mappers" compile anything found, guaranteeing everything to be compiled in all cases

19 years agoremoved debug line
Mike Bayer [Fri, 7 Jul 2006 14:36:25 +0000 (14:36 +0000)] 
removed debug line

19 years agoordering of UPDATE and DELETE statements within groups is now
Mike Bayer [Mon, 3 Jul 2006 15:55:20 +0000 (15:55 +0000)] 
ordering of UPDATE and DELETE statements within groups is now
in order of primary key values, for more deterministic ordering
after_insert/delete/update mapper extensions now called per object,
not per-object-per-table
fixed import in firebird.py

19 years agofixed hyperlink to adv datamapping
Mike Bayer [Sun, 2 Jul 2006 16:34:03 +0000 (16:34 +0000)] 
fixed hyperlink to adv datamapping

19 years agochange exception message
Mike Bayer [Sun, 2 Jul 2006 16:33:46 +0000 (16:33 +0000)] 
change exception message

19 years agogot MS-SQL support largely working, including reflection, basic types, fair amount...
Mike Bayer [Sat, 1 Jul 2006 19:26:30 +0000 (19:26 +0000)] 
got MS-SQL support largely working, including reflection, basic types, fair amount of ORM stuff, etc.
'rowcount' label is reseved in MS-SQL and had to change in sql.py count() as well as orm.query

19 years agosome adjustments to activemapper's objectstore to be composed against SessionContext
Mike Bayer [Sat, 1 Jul 2006 15:30:33 +0000 (15:30 +0000)] 
some adjustments to activemapper's objectstore to be composed against SessionContext
DynamicMetaData checks first for _engine before returning

19 years agofixes to attributes/related so that get_history with passive=True returns no
Mike Bayer [Fri, 30 Jun 2006 03:56:49 +0000 (03:56 +0000)] 
fixes to attributes/related so that get_history with passive=True returns no
AttributeHistory object if an untriggered callable was found (not sure how this used to work
OK....)

19 years agoPut back in the foreign-key checking code in process_relationships for
Jonathan LaCour [Fri, 30 Jun 2006 01:19:52 +0000 (01:19 +0000)] 
Put back in the foreign-key checking code in process_relationships for
ActiveMapper.  It looks like it is required by at least one person, so for
now the code will stay in!

19 years agoThere were two significant changes in this commit:
Jonathan LaCour [Thu, 29 Jun 2006 23:29:37 +0000 (23:29 +0000)] 
There were two significant changes in this commit:

 * Added implicit primary keys to ActiveMapper.  Now, if you do not speicfy a
   primary key on your objects when declaring them, an Integer primary key
   called `id` will automatically be added to your objects for you.

 * Commented out a large chunk of the process_relationships function that
   should no longer be necessary thanks to some of the deferred mapper
   compilation that was added in SQLAlchemy 0.2.3.  I left it in the code, but
   commented it out just in case this change causes a problem in someone's
   else's code and I can put it back in if needed.

19 years agoadded a note about sqlite uris
Mike Bayer [Thu, 29 Jun 2006 21:34:30 +0000 (21:34 +0000)] 
added a note about sqlite uris

19 years agoremoved toengine() calls
Mike Bayer [Thu, 29 Jun 2006 20:47:50 +0000 (20:47 +0000)] 
removed toengine()  calls

19 years agoinserting './lib/' into sys.path since PYTHONPATH no longer straightforward with...
Mike Bayer [Thu, 29 Jun 2006 00:28:55 +0000 (00:28 +0000)] 
inserting './lib/' into sys.path since PYTHONPATH no longer straightforward with latest setuptools

19 years agofixed endless loop bug in select_by(), if the traversal hit
Mike Bayer [Wed, 28 Jun 2006 23:01:04 +0000 (23:01 +0000)] 
fixed endless loop bug in select_by(), if the traversal hit
two mappers that referenced each other

19 years agofirebird patch with support for type_conv
Mike Bayer [Wed, 28 Jun 2006 19:03:29 +0000 (19:03 +0000)] 
firebird patch with support for type_conv

19 years agoUpdated ActiveMapper to support order_by parameters on all relationships.
Jonathan LaCour [Wed, 28 Jun 2006 17:26:48 +0000 (17:26 +0000)] 
Updated ActiveMapper to support order_by parameters on all relationships.
Thanks to Charles Duffy for this patch!

19 years agofixes to pool_invalidate [ticket:224] rel_0_2_4
Mike Bayer [Tue, 27 Jun 2006 23:56:14 +0000 (23:56 +0000)] 
fixes to pool_invalidate [ticket:224]

19 years agonew MySQL types: MSEnum, MSTinyText, MSMediumText, MSLongText, etc.
Mike Bayer [Tue, 27 Jun 2006 22:24:39 +0000 (22:24 +0000)] 
new MySQL types: MSEnum, MSTinyText, MSMediumText, MSLongText, etc.
more support for MS-specific length/precision params in numeric types
patch courtesy Mike Bernson

19 years agolazy load bind params properly propigate column type [ticket:225]
Mike Bayer [Tue, 27 Jun 2006 21:48:53 +0000 (21:48 +0000)] 
lazy load bind params properly propigate column type [ticket:225]

19 years agocursor() method on ConnectionFairy allows db-specific extension
Mike Bayer [Mon, 26 Jun 2006 20:15:54 +0000 (20:15 +0000)] 
cursor() method on ConnectionFairy allows db-specific extension
arguments to be propigated [ticket:221]

19 years agoPG didnt like 'user' for a table name
Mike Bayer [Mon, 26 Jun 2006 20:06:59 +0000 (20:06 +0000)] 
PG didnt like 'user' for a table name

19 years agodont put SERIAL on a column if it has a ForeignKey
Mike Bayer [Mon, 26 Jun 2006 20:01:56 +0000 (20:01 +0000)] 
dont put SERIAL on a column if it has a ForeignKey

19 years agofixed attribute manager's ability to traverse the full set of managed attributes...
Mike Bayer [Mon, 26 Jun 2006 19:55:48 +0000 (19:55 +0000)] 
fixed attribute manager's ability to traverse the full set of managed attributes for a descendant class, + 2 unit tests

19 years ago0.2.4...
Mike Bayer [Mon, 26 Jun 2006 19:51:41 +0000 (19:51 +0000)] 
0.2.4...

19 years agomigrated Queue.Queue to its own module here, to assure RLock compatibility
Mike Bayer [Mon, 26 Jun 2006 19:51:01 +0000 (19:51 +0000)] 
migrated Queue.Queue to its own module here, to assure RLock compatibility

19 years agofix to the column properties to better compile the underlying mapper before access
Mike Bayer [Mon, 26 Jun 2006 19:30:10 +0000 (19:30 +0000)] 
fix to the column properties to better compile the underlying mapper before access

19 years agosome doc edits
Mike Bayer [Mon, 26 Jun 2006 19:15:09 +0000 (19:15 +0000)] 
some doc edits

19 years agofix to timeout
Mike Bayer [Mon, 26 Jun 2006 18:27:32 +0000 (18:27 +0000)] 
fix to timeout

19 years agoattempting to fix reentrant condition that can happen with Queue.Queue
Mike Bayer [Mon, 26 Jun 2006 04:32:34 +0000 (04:32 +0000)] 
attempting to fix reentrant condition that can happen with Queue.Queue

19 years agowhen QueuePool times out it raises a TimeoutError instead of
Mike Bayer [Mon, 26 Jun 2006 02:06:44 +0000 (02:06 +0000)] 
when QueuePool times out it raises a TimeoutError instead of
erroneously making another connection

19 years agofixed bug when specifying explicit module to mysql dialect
Mike Bayer [Fri, 23 Jun 2006 14:38:16 +0000 (14:38 +0000)] 
fixed bug when specifying explicit module to mysql dialect

19 years agoadded *extra to mysql string type to consume extra unsupported arguments from reflection
Mike Bayer [Thu, 22 Jun 2006 22:37:10 +0000 (22:37 +0000)] 
added *extra to mysql string type to consume extra unsupported arguments from reflection

19 years agofixes to inheritance firing off dependency processors correctly + unittest
Mike Bayer [Thu, 22 Jun 2006 22:23:57 +0000 (22:23 +0000)] 
fixes to inheritance firing off dependency processors correctly + unittest

19 years agoidentified another TLTransaction scenario, and adjusted TLConnection/TLSession to...
Mike Bayer [Thu, 22 Jun 2006 20:03:09 +0000 (20:03 +0000)] 
identified another TLTransaction scenario, and adjusted TLConnection/TLSession to fix this as well (reverted previous change, and overriding in_transaction() instead)

19 years agoTLConnection insures that it is used to create a transaction via the session when...
Mike Bayer [Thu, 22 Jun 2006 19:46:44 +0000 (19:46 +0000)] 
TLConnection insures that it is used to create a transaction via the session when begin() is called, so that it has proper transactional context, + unittests

19 years agostill fixing compilation.....dum de dum.....
Mike Bayer [Thu, 22 Jun 2006 19:29:24 +0000 (19:29 +0000)] 
still fixing compilation.....dum de dum.....

19 years agoremoved non py2.3ish parenthesis
Mike Bayer [Thu, 22 Jun 2006 04:31:15 +0000 (04:31 +0000)] 
removed non py2.3ish parenthesis

19 years agomore compilation fixes
Mike Bayer [Thu, 22 Jun 2006 04:29:55 +0000 (04:29 +0000)] 
more compilation fixes

19 years agoReplaced tab spacing with plain spaces.
sean [Wed, 21 Jun 2006 16:29:15 +0000 (16:29 +0000)] 
Replaced tab spacing with plain spaces.

19 years agoChanged mapper.get_session to compile mapper and thereby create the
sean [Wed, 21 Jun 2006 16:24:05 +0000 (16:24 +0000)] 
Changed mapper.get_session to compile mapper and thereby create the
extension chain needed to lookup the current session.

19 years agosome cleanup to the new compilation changes
Mike Bayer [Tue, 20 Jun 2006 23:22:54 +0000 (23:22 +0000)] 
some cleanup to the new compilation changes

19 years agopossible fix to deferred compilation, adds an extra kick in case everything wasnt...
Mike Bayer [Tue, 20 Jun 2006 02:45:03 +0000 (02:45 +0000)] 
possible fix to deferred compilation, adds an extra kick in case everything wasnt compiled

19 years agosingle space for MySQL appeasement
Mike Bayer [Mon, 19 Jun 2006 21:52:54 +0000 (21:52 +0000)] 
single space for MySQL appeasement

19 years agomore development on using eager loads/limit/offset/join_via/order_by at the same...
Mike Bayer [Mon, 19 Jun 2006 21:44:56 +0000 (21:44 +0000)] 
more development on using eager loads/limit/offset/join_via/order_by at the same time

19 years agowhen Query does the "nested select" thing, it copies the ORDER BY to be placed on...
Mike Bayer [Mon, 19 Jun 2006 20:41:42 +0000 (20:41 +0000)] 
when Query does the "nested select" thing, it copies the ORDER BY to be placed on the "outer" select, so that eager loaders modify only the outer one and not the inner one

19 years agoadded check for conflicting backrefs + unit test
Mike Bayer [Mon, 19 Jun 2006 17:47:21 +0000 (17:47 +0000)] 
added check for conflicting backrefs + unit test
identified unit test where mapper properties must be set up before the surrogate mapper is created

19 years agoAdded some additional data to exception raised in PropertyLoader,_get_direction when...
Robert Leftwich [Sun, 18 Jun 2006 22:16:36 +0000 (22:16 +0000)] 
Added some additional data to exception raised in PropertyLoader,_get_direction when cannot determine the direction to specify exactly which relation failed.

19 years agolazy load and deferred load operations require the parent object
Mike Bayer [Sun, 18 Jun 2006 00:56:25 +0000 (00:56 +0000)] 
lazy load and deferred load operations require the parent object
to be in a Session to do the operation; whereas before the operation
would just return a blank list or None, it now raises an exception.

Session.update() is slightly more lenient if the session to which
the given object was formerly attached to was garbage collected;
otherwise still requires you explicitly remove the instance from
the previous Session.

19 years agotry/except around init.__name__ = oldinit.__name__ for py2.3 compat
Mike Bayer [Sat, 17 Jun 2006 14:57:10 +0000 (14:57 +0000)] 
try/except  around init.__name__ = oldinit.__name__ for py2.3 compat

19 years agocast converted into its own ClauseElement so that it can have an explicit compilation rel_0_2_3
Mike Bayer [Sat, 17 Jun 2006 00:53:33 +0000 (00:53 +0000)] 
cast converted into its own ClauseElement so that it can have an explicit compilation
function in ANSICompiler
MySQLCompiler then skips most CAST calls since it only seems to support the standard syntax for Date
types; other types now a TODO for MySQL
then, polymorphic_union() function now CASTs null()s to the type corresponding to the columns in the UNION,
since postgres doesnt like mixing NULL with integer types
(long road for that .....)

19 years agoif an object fails construction, doesnt get added to the session
Mike Bayer [Sat, 17 Jun 2006 00:45:45 +0000 (00:45 +0000)] 
if an object fails construction, doesnt get added to the session

19 years agoupdates
Mike Bayer [Fri, 16 Jun 2006 19:38:31 +0000 (19:38 +0000)] 
updates

19 years agounsupported unit test on mysql
Mike Bayer [Fri, 16 Jun 2006 19:28:36 +0000 (19:28 +0000)] 
unsupported unit test on mysql

19 years agomore intelligent "removal" of list items when a list attribute is replaced, doesnt...
Mike Bayer [Fri, 16 Jun 2006 19:21:57 +0000 (19:21 +0000)] 
more intelligent "removal" of list items when a list attribute is replaced, doesnt actually "remove" the items from teh replaced list just marks them as "removed" from the parent object for history purposes

19 years agoremoved historyarray test
Mike Bayer [Fri, 16 Jun 2006 19:02:10 +0000 (19:02 +0000)] 
removed historyarray test
ForeignKey is more intelligent about locating the parent table it represents, in the case that
its attached to a CompoundSelect column which has multiple "originals", some of which might not be schema.Columns

19 years agofixed bug where if a many-to-many table mapped as "secondary" had other cols in it...
Mike Bayer [Fri, 16 Jun 2006 03:19:53 +0000 (03:19 +0000)] 
fixed bug where if a many-to-many table mapped as "secondary" had other cols in it, delete operations would try to match up on those columns.  also fixed bug in new attributes if you set a list based attribute to a blank list, properly fires the 'delete' event for the elements of the previous list

19 years agofixed 'port' attribute of URL to be an integer if present [ticket:209]
Mike Bayer [Thu, 15 Jun 2006 20:30:04 +0000 (20:30 +0000)] 
fixed 'port' attribute of URL to be an integer if present [ticket:209]

19 years agosome adjustments
Mike Bayer [Thu, 15 Jun 2006 16:05:59 +0000 (16:05 +0000)] 
some adjustments

19 years agomerged attributes rewrite
Mike Bayer [Thu, 15 Jun 2006 15:53:00 +0000 (15:53 +0000)] 
merged attributes rewrite

19 years agoif an item attached to a parent is found to be already in the session, then the ...
Mike Bayer [Thu, 15 Jun 2006 15:27:39 +0000 (15:27 +0000)] 
if an item attached to a parent is found to be already in the session, then the "save-update" cascade operation doesnt take place.  currently this prevents unncessessary cascading due to backref events, which was a massive speed hit.

19 years agofixed bug where Column with redefined "key" property wasnt getting
Mike Bayer [Wed, 14 Jun 2006 16:46:38 +0000 (16:46 +0000)] 
fixed bug where Column with redefined "key" property wasnt getting
type conversion happening in the ResultProxy [ticket:207]

19 years agofixed nested rollbacks
Mike Bayer [Wed, 14 Jun 2006 15:50:40 +0000 (15:50 +0000)] 
fixed nested rollbacks

19 years agounit tests for dangling subquery, many-to-many clear-and-resave
Mike Bayer [Wed, 14 Jun 2006 15:39:46 +0000 (15:39 +0000)] 
unit tests for dangling subquery, many-to-many clear-and-resave

19 years agoadjustment to better allow textual from clauses
Mike Bayer [Mon, 12 Jun 2006 19:53:42 +0000 (19:53 +0000)] 
adjustment to better allow textual from clauses

19 years ago"parent track" function needed to be more specific to the parent class
Mike Bayer [Sat, 10 Jun 2006 19:40:26 +0000 (19:40 +0000)] 
"parent track" function needed to be more specific to the parent class

19 years agoseparated standalone between(), column.between(), put literal checking for both,...
Mike Bayer [Thu, 8 Jun 2006 17:38:37 +0000 (17:38 +0000)] 
separated standalone between(), column.between(), put literal checking for both, favor column.between()

19 years agofixed typing for between() operator, [ticket:202]
Mike Bayer [Thu, 8 Jun 2006 17:29:18 +0000 (17:29 +0000)] 
fixed typing for between() operator, [ticket:202]

19 years agofixed module scoping for class_mapper [ticket:201]
Mike Bayer [Thu, 8 Jun 2006 17:04:15 +0000 (17:04 +0000)] 
fixed module scoping for class_mapper [ticket:201]

19 years agolate compilation of mappers. now you can create mappers in any order, and they will...
Mike Bayer [Thu, 8 Jun 2006 16:58:14 +0000 (16:58 +0000)] 
late compilation of mappers.  now you can create mappers in any order, and they will compile their internal state when first used in a query or flush operation (or their props or 'c'/'columns' attributes are used).  includes various cleanups and fixes in support of the change, including some unit test changes, additional unit tests.

19 years agopossible fix to cascade_mappers
Mike Bayer [Wed, 7 Jun 2006 23:32:52 +0000 (23:32 +0000)] 
possible fix to cascade_mappers

19 years agofixed [ticket:200]
Mike Bayer [Wed, 7 Jun 2006 23:16:35 +0000 (23:16 +0000)] 
fixed [ticket:200]

19 years agoFurther improved the process_relationships function to handle the ordering of
Jonathan LaCour [Tue, 6 Jun 2006 17:58:41 +0000 (17:58 +0000)] 
Further improved the process_relationships function to handle the ordering of
class definitions better. The function was only looking at relationships, not
foreign keys, and was making some improper assumptions. The unit tests all
still pass, and now some of my own code actually works, regardless of the order
that I define the classes in.' 'lib/sqlalchemy/ext/activemapper.py

19 years agofixed bug where tables with schema name werent getting indexed in metadata correctly
Mike Bayer [Tue, 6 Jun 2006 16:38:30 +0000 (16:38 +0000)] 
fixed bug where tables with schema name werent getting indexed in metadata correctly

19 years agoCopy __name__ and __doc__ from oldinit.
sean [Tue, 6 Jun 2006 04:44:39 +0000 (04:44 +0000)] 
Copy __name__ and __doc__ from oldinit.

19 years agofix to backref when its none for one-to-one
Mike Bayer [Tue, 6 Jun 2006 01:33:17 +0000 (01:33 +0000)] 
fix to backref when its none for one-to-one

19 years agoadded "NonExistentTable" exception throw to reflection, courtesy lbruno@republico...
Mike Bayer [Tue, 6 Jun 2006 00:11:54 +0000 (00:11 +0000)] 
added "NonExistentTable" exception throw to reflection, courtesy lbruno@republico.estv.ipv.pt, for [ticket:138]

19 years agofactored out "inheriting_tasks" member of UOWTask. all "polymorphic traversal" is...
Mike Bayer [Tue, 6 Jun 2006 00:02:48 +0000 (00:02 +0000)] 
factored out "inheriting_tasks" member of UOWTask.  all "polymorphic traversal" is done via the polymorphic_tasks() method.

19 years agoHashSet is gone, uses set() for most sets in py2.4 or sets.Set.
Mike Bayer [Mon, 5 Jun 2006 23:28:44 +0000 (23:28 +0000)] 
HashSet is gone, uses set() for most sets in py2.4 or sets.Set.
ordered set functionality supplied by a subclass of sets.Set

19 years ago"foreignkey" property of PropertyLoader is a sets.Set. removed "foreigntable".
Mike Bayer [Mon, 5 Jun 2006 22:45:10 +0000 (22:45 +0000)] 
"foreignkey" property of PropertyLoader is a sets.Set.  removed "foreigntable".
simplified/fixed foreign key location in _find_dependent(), fixes [ticket:151]

19 years agofixed InvalidRequestException -> InvalidRequestError typo
sean [Mon, 5 Jun 2006 21:19:20 +0000 (21:19 +0000)] 
fixed InvalidRequestException -> InvalidRequestError typo

19 years agotweaks rel_0_2_2
Mike Bayer [Mon, 5 Jun 2006 19:27:47 +0000 (19:27 +0000)] 
tweaks

19 years ago0.2.2 prep, added "pickler" option to Pickle type
Mike Bayer [Mon, 5 Jun 2006 19:18:48 +0000 (19:18 +0000)] 
0.2.2 prep, added "pickler" option to Pickle type

19 years agoforce_close...
Mike Bayer [Mon, 5 Jun 2006 18:26:54 +0000 (18:26 +0000)] 
force_close...