1. 02 Haz, 2002 1 kayıt (commit)
  2. 01 Haz, 2002 1 kayıt (commit)
  3. 07 Nis, 2002 1 kayıt (commit)
  4. 11 Şub, 2002 1 kayıt (commit)
  5. 09 Ara, 2001 1 kayıt (commit)
    • Fredrik Lundh's avatar
      bug #133283, #477728, #483789, #490573 · 82b23073
      Fredrik Lundh yazdı
      backed out of broken minimal repeat patch from July
      
      also fixed a couple of minor potential resource leaks in pattern_subx
      (Guido had already fixed the big one)
      82b23073
  6. 03 Kas, 2001 1 kayıt (commit)
  7. 02 Kas, 2001 1 kayıt (commit)
  8. 18 Eyl, 2001 1 kayıt (commit)
  9. 04 Eyl, 2001 1 kayıt (commit)
  10. 22 Mar, 2001 1 kayıt (commit)
    • Fredrik Lundh's avatar
      sre 2.1b2 update: · b25e1ad2
      Fredrik Lundh yazdı
      - take locale into account for word boundary anchors (#410271)
      - restored 2.0's *? behaviour (#233283, #408936 and others)
      - speed up re.sub/re.subn
      b25e1ad2
  11. 18 Şub, 2001 2 kayıt (commit)
  12. 15 Şub, 2001 1 kayıt (commit)
    • Skip Montanaro's avatar
      bunch more __all__ lists · 0de65807
      Skip Montanaro yazdı
      also modified check_all function to suppress all warnings since they aren't
      relevant to what this test is doing (allows quiet checking of regsub, for
      instance)
      0de65807
  13. 09 Şub, 2001 1 kayıt (commit)
  14. 16 Ock, 2001 1 kayıt (commit)
  15. 14 Ock, 2001 2 kayıt (commit)
  16. 28 Eki, 2000 1 kayıt (commit)
  17. 07 Eki, 2000 2 kayıt (commit)
  18. 03 Eki, 2000 1 kayıt (commit)
  19. 24 Eyl, 2000 1 kayıt (commit)
  20. 02 Eyl, 2000 2 kayıt (commit)
  21. 31 Agu, 2000 1 kayıt (commit)
  22. 07 Agu, 2000 1 kayıt (commit)
  23. 01 Agu, 2000 3 kayıt (commit)
    • Fredrik Lundh's avatar
      final 0.9.8 updates: · e1869838
      Fredrik Lundh yazdı
      -- added REPEAT_ONE operator
      -- added ANY_ALL operator (used to represent "(?s).")
      e1869838
    • Fredrik Lundh's avatar
      -- fixed width calculations for alternations · 2f2c67d7
      Fredrik Lundh yazdı
      -- fixed literal check in branch operator
         (this broke test_tokenize, as reported by Mark Favas)
      -- added REPEAT_ONE operator (still not enabled, though)
      -- added some debugging stuff (maxlevel)
      2f2c67d7
    • Fredrik Lundh's avatar
      SRE 0.9.8: passes the entire test suite · 29c4ba9a
      Fredrik Lundh yazdı
      -- reverted REPEAT operator to use "repeat context" strategy
         (from 0.8.X), but done right this time.
      -- got rid of backtracking stack; use nested SRE_MATCH calls
         instead (should probably put it back again in 0.9.9 ;-)
      -- properly reset state in scanner mode
      -- don't use aggressive inlining by default
      29c4ba9a
  24. 23 Tem, 2000 1 kayıt (commit)
    • Fredrik Lundh's avatar
      -- SRE 0.9.6 sync. this includes: · 8a3ebf8c
      Fredrik Lundh yazdı
       + added "regs" attribute
       + fixed "pos" and "endpos" attributes
       + reset "lastindex" and "lastgroup" in scanner methods
       + removed (?P#id) syntax; the "lastindex" and "lastgroup"
         attributes are now always set
       + removed string module dependencies in sre_parse
       + better debugging support in sre_parse
       + various tweaks to build under 1.5.2
      8a3ebf8c
  25. 03 Tem, 2000 2 kayıt (commit)
    • Fredrik Lundh's avatar
      - fixed grouping error bug · 72b82ba1
      Fredrik Lundh yazdı
      - changed "group" operator to "groupref"
      72b82ba1
    • Fredrik Lundh's avatar
      - added lookbehind support (?<=pattern), (?<!pattern). · 6f013982
      Fredrik Lundh yazdı
        the pattern must have a fixed width.
      
      - got rid of array-module dependencies; the match pro-
        gram is now stored inside the pattern object, rather
        than in an extra string buffer.
      
      - cleaned up a various of potential leaks, api abuses,
        and other minors in the engine module.
      
      - use mal's new isalnum macro, rather than my own work-
        around.
      
      - untabified test_sre.py.  seems like I removed a couple
        of trailing spaces in the process...
      6f013982
  26. 02 Tem, 2000 3 kayıt (commit)
  27. 01 Tem, 2000 2 kayıt (commit)
  28. 30 Haz, 2000 3 kayıt (commit)
    • Fredrik Lundh's avatar
      - fixed code generation error in multiline mode · 55a4f4a5
      Fredrik Lundh yazdı
      - fixed parser flag propagation (of all stupid bugs...)
      55a4f4a5
    • Fredrik Lundh's avatar
      - reverted to "\x is binary byte" · 4ccea941
      Fredrik Lundh yazdı
      - removed evil tabs from sre_parse and sre_compile
      4ccea941
    • Fredrik Lundh's avatar
      the mad patcher strikes again: · 0640e116
      Fredrik Lundh yazdı
      -- added pickling support (only works if sre is imported)
      
      -- fixed wordsize problems in engine
         (instead of casting literals down to the character size,
         cast characters up to the literal size (same as the code
         word size).  this prevents false hits when you're matching
         a unicode pattern against an 8-bit string. (unfortunately,
         this broke another test, but I think the test should be
         changed in this case; more on that on python-dev)
      
      -- added sre.purge function
         (unofficial, clears the cache)
      0640e116