~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to storm/__init__.py

  • Committer: Jamu Kakar
  • Date: 2009-10-23 19:19:16 UTC
  • mfrom: (329.3.1 mysql-reserved-words)
  • Revision ID: jkakar@kakar.ca-20091023191916-6jfp30ed3l2bl1se
Merged mysql-reserved-words [r=gabriel,jamesh] [f=433833]

MySQL reserved words that weren't treated properly before are
handled correctly now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import os
23
23
 
24
24
 
25
 
version = "0.14"
 
25
# Use a 4-digit version for development versions with 99 as the final version.
 
26
# For example, if 0.15 is the currently released version of Storm, the
 
27
# development version should be version 0.15.0.99.  This will make it obvious
 
28
# that this isn't the 0.15 release version while also allowing us to release
 
29
# an 0.15.1 if need be.  Release versions should use 2-digit version numbers,
 
30
# with 0.16 being the next release version in this example.
 
31
version = "0.15.0.99"
26
32
version_info = tuple([int(x) for x in version.split(".")])
27
33
 
28
34