Skip to content
Snippets Groups Projects
  1. Mar 06, 2020
  2. May 03, 2020
  3. May 04, 2020
  4. May 03, 2020
  5. Mar 06, 2020
  6. May 03, 2020
  7. Mar 10, 2020
  8. Nov 24, 2019
  9. Mar 06, 2020
  10. Nov 25, 2019
  11. Nov 24, 2019
  12. Dec 23, 2019
  13. Mar 05, 2020
    • Manuel Jacob's avatar
      py3: use print as function · 7a13f6fa
      Manuel Jacob authored
      * run `find . -name "*.py" -print0 -o -path ./tests/hghave | xargs -I {} -0 2to3 --fix=print --write {}`
      * run `find . -name "*.py" -print0 -o -path ./tests/hghave | xargs -I {} -0 2to3 --doctests_only --fix=print --write {}`
      * remove extra newline at end of files introduced by last command
      * add `from __future__ import print_function` to Python files
      7a13f6fa
  14. Nov 22, 2019
  15. Nov 24, 2019
  16. Nov 12, 2019
  17. Mar 05, 2020
  18. Jun 03, 2019
  19. Mar 01, 2020
  20. Jan 11, 2020
  21. Dec 08, 2019
    • Georges Racinet's avatar
      overlaychangectx: adding attribute expected in future hg 5.3 · 5f912243
      Georges Racinet authored
      This `_maybe_filtered` attribute has been introduced in Mercurial
      revision 8a37203ab1d5, and is henceforth expected by some callers.
      
      Adding it inconditionnally should not harm on previous versions: it
      would simply not get used.
      5f912243
    • Georges Racinet's avatar
      compat: fixed access to status attributes · 3de074bf
      Georges Racinet authored
      as of Mercurial c5548b0b6847, status is no more a tuple. Its attributes
      must be accessed explicitely.
      
      These attributes have been available since 3.2 (introduced in cb4449921a1d),
      so that we don't need to introduce a conditional such as `isinstance(tuple)`.
      
      Technically, these are slots, so that performance-wise, such prefetching in
      locals should not matter, but they make for the smallest changeset.
      3de074bf
Loading