-
Google PR 1Trustworthiness Unknown
-
Avg. Daily Visitors N/AChild Safety Unknown
-
Avg. Daily Pageviews N/APrivacy Unknown
Pony ORM Releases
Domain info
Location: | United States |
Registrant: | Redacted for Privacy (Privacy service provided by Withheld for Privacy ehf) |
Hosted by: | Akamai Technologies, Inc. |
Registrar: | NameCheap, Inc. |
Subnetworks: | 45.79.156.60 |
Social Media Activities
- Facebook likes: -
- Twitter mentions: 17
- Google pluses: -
- LinkedIn mentions: -
- Pinterest pins: -
- StumbleUpon views: -
Web Safety
- This website is malware-free.
- Status ok
Sites associated with the same registrant
Whois
Blog.ponyorm.com popular pages to visit
Pony ORM Releases
Pony ORM Releases
Support for Python 3.11
Python 3.11 introduced changes to its bytecode to speed up execution (see Python 3.11 changes). As a consequence, updates were required in the Pony bytecode d...
Pony ORM Blog | Page 2
before_delete hooks:
class MyEntity(db.Entity):
...
def before_insert(self):
print '%s is about to be inserted!' % self
def before_update(self):
...
Pony ORM 0.6 Release Candidate 3 | Pony ORM Blog
Since the
long type is deprecated in Pony now. Instead of
long you should use the
int type and specify the
size option:
class MyEntity(db.Entity):
attr1 = Required(long) # deprecate...