Files
deb-python-lesscpy/lesscpy/lessc/utility.py
Sascha Peilicke 277d8c3957 Fix '&' multiplication
Let'S do it by example:

  .ident_a, .ident_b {
    & + & + & { color: red; }
  }

We have to generate all permutations of the parent identifier list and
the amount of ampersand child identifiers. In the above case, the
exploded identifier list has ident_count**ampersand_count entries (8).

As a bonus, we get the same identifier sort order as lessc does.

Conflicts:
	lesscpy/plib/identifier.py
2014-01-24 14:01:10 +01:00

6.4 KiB