~ubuntu-branches/ubuntu/saucy/python3.3/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/patches/profile-doc.diff

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-04-17 23:35:49 UTC
  • mfrom: (34.1.1 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130417233549-9ij5xy8uhqsgfwx5
Tags: 3.3.1-1ubuntu5
* Remove obsolete profile-doc patch.
* Run the pgo profile task in batches to avoid crashes during the
  pgo profile run.
* Disable the lto build on armhf for now.
* Final (?) set of autopkg test fixes.
* Issue #17012: shutil.which() no longer fallbacks to the PATH environment.
  variable if empty path argument is specified.
* Issue #17782: Fix undefined behaviour on platforms where
  ``struct timespec``'s "tv_nsec" member is not a C long.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# DP: hotshot/pstats.py: Error out on missing profile/pstats modules.
2
 
# DP: Add a note to the library documentation, that the profile and pstats
3
 
# DP: modules can be found in the python2.x-profiler package.
4
 
 
5
 
--- a/Doc/library/profile.rst
6
 
+++ b/Doc/library/profile.rst
7
 
@@ -4,6 +4,12 @@
8
 
 The Python Profilers
9
 
 ********************
10
 
 
11
 
+Debian note: The license for the :mod:`profile` and :mod:`pstats`
12
 
+modules doesn't conform to the Debian Free Software Guidelines (DFSG).
13
 
+These modules can be found in the *python-profiler* package in the
14
 
+*non-free* section of the Debian archives or in the the *multiverse*
15
 
+section of the Ubuntu archives.
16
 
+
17
 
 .. sectionauthor:: James Roskind
18
 
 
19
 
 .. module:: profile
20
 
@@ -211,6 +217,12 @@
21
 
    :synopsis: Python profiler
22
 
 
23
 
 
24
 
+Debian note: The license for the :mod:`profile` and :mod:`pstats`
25
 
+modules doesn't conform to the Debian Free Software Guidelines (DFSG).
26
 
+These modules can be found in the *python-profiler* package in the
27
 
+*non-free* section of the Debian archives or in the the *multiverse*
28
 
+section of the Ubuntu archives.
29
 
+
30
 
 The primary entry point for the profiler is the global function
31
 
 :func:`profile.run` (resp. :func:`cProfile.run`). It is typically used to create
32
 
 any profile information.  The reports are formatted and printed using methods of