Yes there are "details" indeed. But not show stoppers. A prototype can be seen
here: http://cclimited.webfactional.com
The nice bit is testing will be executed in a total fresh instance, an added
bonus
On 4 September 2014 05:16:01 GMT+01:00, Nick Coghlan wrote:
>On 4 September 2014 11:07, Ant
*~, .orig, .rej, .back should be kept. They are not generated by
configure nor make.
Ideally they should be left untracked not ignored.
While devs can certainly add them to the .hgignore list to make life
easier, a repository should be clean of extra files (or shown as
untracked).
I'd add t
How would that work? How could hg purge the .bak, .orig, .rej, .old,
etc. files?
hg purge (it's an extension) removes anything that isn't tracked (and
not ignored in the .hgignore): kind of distclean.
I hope this helps
___
Python-Dev mailing list
.. or having hg "purging" unwanted build artifact (probably cleaning up
the .hgignore file first)
find $(srcdir)/* ...
to avoid this problem. It won't expand the .hg top-level directory.
Or find \( -type d -name .hg -prune \) -o ...
Oleg.
__
What's the stack trace?
$> gdb --args ./python.exe -Wd -m test.regrtest test_exceptions
and once in gdb:
gdb> bt
That should point on where it happened.
I hope this help
On 2013-05-30 13:08, Ćukasz Langa wrote:
This happens after Benjamin's changes in 83937. Anybody else seeing
this?
As part of those changes, I've cleaned up a few aspects of the repo
layout:
* moved the main executable source file from Modules to a separate
Apps directory
Do you mean things that go into the shared library
(libpythonXX/pythonXX.dll) vs executables?
___
;) there's the missing bit.
btw apologies if that looked offensive: it wasn't intended.
I disagree on "bilingual extension modules are easier".
While #ifdef can sort some issues (compiling ones mostly) it won't be
much of a help if a module crash (and not much help from testing
either).
In
It's already hard to sell 2.7 in most companies.
Regards,
Antonio
Anyway, you should trust Brett Canon: "Python 3.3: Trust Me, It's
Better Than Python 2.7".
https://speakerdeck.com/pyconslides/python-3-dot-3-trust-me-its-better-than-python-2-dot-7-by-dr-brett-cannon
Victor
By the way on the arm (and any platform that can do cross-compiling)
I've created a Makefile based build of the python 2.7.x:
https://bitbucket.org/cavallo71/android
Please don't be fooled by the Android name, it really can take any
crosscompiler (provided it follows the gcc synatx).
It wa