From 32ae5f7ed3c5a8e40b69f62e4c6c41cdfbee855a Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 12 Jun 2016 13:23:15 -0700 Subject: Ignore the VS Code config directory --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 58c73fc99e..15279cdc8e 100644 --- a/.hgignore +++ b/.hgignore @@ -2,6 +2,7 @@ .purify .svn/ ^.idea/ +^.vscode/ .DS_Store Makefile$ Makefile.pre$ -- cgit v1.2.1 From e6577a2d7326e903890be4f8714bf4201b417783 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Tue, 6 Sep 2016 16:46:22 -0700 Subject: Add libpython*.dylib to .{hg,git}ignore --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index a13be7f9c2..a3ffcf4dd7 100644 --- a/.hgignore +++ b/.hgignore @@ -44,6 +44,7 @@ Parser/pgen$ syntax: glob libpython*.a libpython*.so* +libpython*.dylib *.swp *.o *.pyc -- cgit v1.2.1 From 7d9e9f40d8903147693be8d2bbb4a129005ca49e Mon Sep 17 00:00:00 2001 From: ?ukasz Langa Date: Fri, 9 Sep 2016 17:37:37 -0700 Subject: DTrace support: function calls, GC activity, line execution Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jes?s Cea Avi?n, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later. --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index a3ffcf4dd7..f5d1414c68 100644 --- a/.hgignore +++ b/.hgignore @@ -56,6 +56,7 @@ libpython*.dylib *.profclang? *.profraw *.dyn +Include/pydtrace_probes.h Lib/distutils/command/*.pdb Lib/lib2to3/*.pickle Lib/test/data/* -- cgit v1.2.1 From a5d8092435155dfc8bd6b6c58fb56e22bdb72831 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 9 Sep 2016 17:59:49 -0700 Subject: Issue #28046: Remove platform-specific directories from sys.path --- .hgignore | 1 - 1 file changed, 1 deletion(-) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index f5d1414c68..92896b7bc2 100644 --- a/.hgignore +++ b/.hgignore @@ -26,7 +26,6 @@ python-config$ python-config.py$ reflog.txt$ tags$ -Lib/plat-mac/errors.rsrc.df.rsrc Misc/python.pc Misc/python-config.sh$ Modules/Setup$ -- cgit v1.2.1