Tornado solves the specific problem of building web applications. What compatibility was tossed in accomplishing this goal? As far as I can tell, Tornado is compatible with HTTP, HTML and other related web standards.
What are some of the things that you can do with your version of Tornado that I cannot do with regular Tornado?
All of these things are possible with Tornado by using simple blocking calls and running more than one instance of the Tornado application behind a reverse proxy. If one instance blocks, then there are other instances of the application to handle new requests.
FriendFeed uses Tornado with MySQL (I learned this from Brett Taylor's blog). It seems to work.
What are some of the things that you can do with your version of Tornado that I cannot do with regular Tornado?