Dan Buch is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

meatballhat / distutils2

forkety fork of tarek's main

Clone this repository (size: 1.6 MB): HTTPS / SSH
hg clone https://bitbucket.org/meatballhat/distutils2
hg clone ssh://hg@bitbucket.org/meatballhat/distutils2

Searching for commits

Mercurial supports a functional language for selecting a set of revisions.

The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.

Identifiers such as branch names must be quoted with single or double quotes if they contain characters outside of [._a-zA-Z0-9\x80-\xff] or if they match one of the predefined predicates.

Prefix operators

not x
Changesets not in x. Short form is ! x.

Infix operators

x::y

A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to ancestors(y), if the second is left out it is equivalent to descendants(x).

An alternative syntax is x..y.

x:y
All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
x and y
The intersection of changesets in x and y. Short form is x & y.
x or y
The union of changesets in x and y. There are two alternative short forms: x | y and x + y.
x - y
Changesets in x but not in y.

Predicates

all()
All changesets, the same as 0:tip.
ancestor(single, single)
Greatest common ancestor of the two changesets.
ancestors(set)
Changesets that are ancestors of a changeset in set.
author(string)
Alias for user(string).
bookmark([name])
The named bookmark or all bookmarks.
branch(set)
All changesets belonging to the branches of changesets in set.
children(set)
Child changesets of changesets in set.
closed()
Changeset is closed.
date(interval)
Changesets within the interval, see hg help dates.
descendants(set)
Changesets which are descendants of changesets in set.
file(pattern)
Changesets affecting files matched by pattern.
follow()
An alias for ::. (ancestors of the working copy's first parent).
grep(regex)
Like keyword(string) but accepts a regex. Use grep(r'...') to ensure special escape characters are handled correctly.
head()
Changeset is a named branch head.
heads(set)
Members of set with no children in set.
id(string)
Revision non-ambiguously specified by the given hex string prefix.
keyword(string)
Search commit message, user name, and names of changed files for string.
limit(set, n)
First n members of set.
max(set)
Changeset with highest revision number in set.
merge()
Changeset is a merge changeset.
min(set)
Changeset with lowest revision number in set.
p1([set])
First parent of changesets in set, or the working directory.
p2([set])
Second parent of changesets in set, or the working directory.
parents([set])
The set of all parents for all changesets in set, or the working directory.
present(set)
An empty set, if any revision in set isn't found; otherwise, all revisions in set.
rev(number)
Revision with the given numeric identifier.
roots(set)
Changesets with no parent changeset in set.
tag(name)
The specified tag by name, or all tagged revisions if no name is given.
user(string)
User name is string.

Commits 1–30 of 203

Author Revision Comments Message Labels Date
Dan Buch fd9be4184746 importing work done for addition of "test" command
Branch
mbh/add-test-command
Nicolas Cadou 30ad3af43b5f Fixed test_find_packages failing when os.path.walk() returns dirs in a different order.
Tarek Ziadé ddb6eda2abd7 merged Yannick work
Yannick Gingras 4310eca1971e removed more dead code related to RPMs
Yannick Gingras f07ceccc1055 fixed test for the removal of the rpm support
Yannick Gingras 19f1965a304d removed remaining bits from 'bdist_rpm'
Tarek Ziadé 105229c23a6a replaced get_next_sibling() calls by next_sibling (>=2.6.5rc2)
Tarek Ziadé 7eff59171017 added a dev note
Dan Buch c7ca83517adf fixing keyword args for summary and description
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch 3487b170b4ad fixing import of find_packages in the setup.py template
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch bcc8494dcb17 fixing a few bugs encountered during everyday usage
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch 52a10643412d another round of cleaning in which the setup.py was made into an actual string template, the help text was proofread a touch, and some extraneous bits that were leftover from the "beyond pylinting" experiment were removed
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch 8e68a021a272 removing some trailing whitespace
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch 276a7dfbaffa merging in from tarek to make sure pylint cleanup still applies
Branch
mbh/mkpkg-cleanup-pylint-only
Dan Buch bebb41af858a merging from upstream
Branch
mbh/mkpkg-cleanup
Dan Buch 91378376fa3b merging in from tarek
Tarek Ziadé 541f90ef0636 removed --force-manifest in sdist command
Tarek Ziadé a960210179a9 added some test coverage and fixed the regexps
Dan Buch 01ec441472c5 merging in from konrad
Konrad Delong 4c79b30a4bc4 implemented run for the simplest case
Konrad Delong bffc38f3b3ad added encode_multipart
Konrad Delong 5948b354eed6 removed voodoo sleep
Konrad Delong 3804252d385c added zip_dir_into
Konrad Delong adec99dc940d started work on upload_docs
Konrad Delong d7dc7573e8ef updated docs
Konrad Delong 4a0c2ff468c6 refactored out PyPIServerTestCase and renamed assertEquals to assertEqual
Konrad Delong 169e3d4e7247 stopping pypi_server in teardown & tested pypi_server separately
Konrad Delong 642169797dfc fixed imports
Konrad Delong 00f3215f67f9 added PYPiServer and refactored upload test to make use of it
Konrad Delong ed6149b35a96 removed upload_docs shot
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. »