Phillip J. Eby wrote:
> The actual syntax I'm going to end up with is:
> 
>       entry_points = {
>           "wsgi.app_factories": [
>               "feature1 = somemodule:somefunction",
>               "feature2 = another.module:SomeClass [extra1,extra2]",
>           ]
>       }

That seems weird to put the assignment inside a string, instead of:

entry_points = {
   'wsgi.app_factories': {
     'app': 'somemodule:somefunction',
   },
}

Also, is there any default name?  Like for a package that distributes 
only one application.  Or these just different spellings for the same thing?


-- 
Ian Bicking  /  [EMAIL PROTECTED]  / http://blog.ianbicking.org
_______________________________________________
Web-SIG mailing list
Web-SIG@python.org
Web SIG: http://www.python.org/sigs/web-sig
Unsubscribe: 
http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Reply via email to