inicio mail me! sindicaci;ón

Archive for October, 2007

Italian Agile Day is coming

Marco Abis has announced the 2007 edition of the Italian Agile Day. I’ve been to the 2006 edition and I have to admit it was great. The talks were all about Scrum, Team management, TDD, ORM and agility, code metrics, distributed projects and agility, code and DB refactoring, XP games, mock objects, agility and Visual Studio Team System, agile web development with Django and more.

I hope the 2007 edition wil be even more interesting :-).

See you in Bologna on November, the 23rd.

Updates from Python SVN, Part 17

  • decimal module:

    • There’s a bunch of is_* methods (like is_signed()) in Decimal class returning a boolean value.
    • Added an internal class to store the digits of log(10), so that they can be made available when necessary without recomputing.
  • enumerate() is no longer bounded to using sequences shorter than LONG_MAX. Formerly, it raised an OverflowError. Now, automatically shifts from ints to longs.

  • itertools.count() is no longer bounded to LONG_MAX. Formerly, it raised an OverflowError. Now, automatically shifts from ints to longs.

  • collections module:

    • NamedTuple became named_tuple.
    • named_tuple field specification can be a string or a list of strings.
    • _ _ asdict _ _() have been added to convert a named tuple instance to dict.
    • Add maxlen support to deque().
  • Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API object available as bsddb.db.api.