Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indicate supported sound header formats #85525

Closed
nanjekyejoannah opened this issue Jul 21, 2020 · 4 comments
Closed

Indicate supported sound header formats #85525

nanjekyejoannah opened this issue Jul 21, 2020 · 4 comments
Labels
docs Documentation in the Doc dir type-feature A feature request or enhancement

Comments

@nanjekyejoannah
Copy link
Member

BPO 41353
Nosy @nanjekyejoannah
PRs
  • gh-85525: Indicate supported sound header formats #21575
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2020-07-21.01:59:17.608>
    labels = ['type-feature', 'docs']
    title = 'Indicate supported sound header formats'
    updated_at = <Date 2020-07-21.02:00:20.351>
    user = 'https://github.com/nanjekyejoannah'

    bugs.python.org fields:

    activity = <Date 2020-07-21.02:00:20.351>
    actor = 'nanjekyejoannah'
    assignee = 'docs@python'
    closed = False
    closed_date = None
    closer = None
    components = ['Documentation']
    creation = <Date 2020-07-21.01:59:17.608>
    creator = 'nanjekyejoannah'
    dependencies = []
    files = []
    hgrepos = []
    issue_num = 41353
    keywords = ['patch']
    message_count = 1.0
    messages = ['374047']
    nosy_count = 2.0
    nosy_names = ['docs@python', 'nanjekyejoannah']
    pr_nums = ['21575']
    priority = 'normal'
    resolution = None
    stage = 'patch review'
    status = 'open'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue41353'
    versions = []

    @nanjekyejoannah
    Copy link
    Member Author

    The documentation for the sndhdr module does not have supported file formats. Something like below could help:

    +------------+------------------------------------+
    | Value | Sound header format |
    +============+====================================+
    | 'aifc' | Compressed Audio Interchange Files |
    +------------+------------------------------------+
    | 'aiff' | Audio Interchange Files |
    +------------+------------------------------------+
    | 'au' | AU Files |
    +------------+------------------------------------+
    | 'hcom' | HCOM Files |
    +------------+------------------------------------+
    | 'sndr' | SNDR Files |
    +------------+------------------------------------+
    | 'sndt' | SNDT Files |
    +------------+------------------------------------+
    | 'voc' | VOC Files |
    +------------+------------------------------------+
    | 'wav' | WAV Files |
    +------------+------------------------------------+
    | '8svx' | 8SVX Files |
    +------------+------------------------------------+
    | 'sb' | SB Files |
    +------------+------------------------------------+
    | 'ub' | UB Files |
    +------------+------------------------------------+
    | 'ul' | uLAW Audio Files |
    +------------+------------------------------------+

    @nanjekyejoannah nanjekyejoannah added the docs Documentation in the Doc dir label Jul 21, 2020
    @nanjekyejoannah nanjekyejoannah added type-feature A feature request or enhancement docs Documentation in the Doc dir labels Jul 21, 2020
    @nanjekyejoannah nanjekyejoannah added the type-feature A feature request or enhancement label Jul 21, 2020
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    @hugovk
    Copy link
    Member

    hugovk commented Apr 11, 2022

    Note the sndhdr module is deprecated in 3.11 and set for removal in 3.13.

    See PEP 594 – Removing dead batteries from the standard library and #91217.

    nanjekyejoannah added a commit that referenced this issue Oct 15, 2022
    * Indicate supported sound header formats
    
    * modify file names
    
    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    miss-islington pushed a commit to miss-islington/cpython that referenced this issue Oct 15, 2022
    * Indicate supported sound header formats
    
    * modify file names
    
    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    (cherry picked from commit 05c042e)
    
    Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
    miss-islington added a commit that referenced this issue Oct 15, 2022
    * Indicate supported sound header formats
    
    * modify file names
    
    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    (cherry picked from commit 05c042e)
    
    Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
    @merwok
    Copy link
    Member

    merwok commented Oct 16, 2022

    This was just merged but note that the module is deprecated: #91217

    The copied functions in email don’t have the new docstrings.

    @nanjekyejoannah
    Copy link
    Member Author

    You can open a new issue and PR for that.

    nanjekyejoannah added a commit that referenced this issue Oct 16, 2022
    * remove extra row
    
    * 📜🤖 Added by blurb_it.
    
    Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
    miss-islington pushed a commit to miss-islington/cpython that referenced this issue Oct 16, 2022
    * remove extra row
    
    * 📜🤖 Added by blurb_it.
    
    Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
    (cherry picked from commit 5c9302d)
    
    Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
    carljm added a commit to carljm/cpython that referenced this issue Oct 17, 2022
    * main: (31 commits)
      pythongh-95913: Move subinterpreter exper removal to 3.11 WhatsNew (pythonGH-98345)
      pythongh-95914: Add What's New item describing PEP 670 changes (python#98315)
      Remove unused arrange_output_buffer function from zlibmodule.c. (pythonGH-98358)
      pythongh-98174: Handle EPROTOTYPE under macOS in test_sendfile_fallback_close_peer_in_the_middle_of_receiving (python#98316)
      pythonGH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (python#98333)
      pythongh-93691: Compiler's code-gen passes location around instead of holding it on the global compiler state (pythonGH-98001)
      pythongh-97669: Create Tools/build/ directory (python#97963)
      pythongh-95534: Improve gzip reading speed by 10% (python#97664)
      pythongh-95913: Forward-port int/str security change to 3.11 What's New in main (python#98344)
      pythonGH-91415: Mention alphabetical sort ordering in the Sorting HOWTO (pythonGH-98336)
      pythongh-97930: Merge with importlib_resources 5.9 (pythonGH-97929)
      pythongh-85525: Remove extra row in doc (python#98337)
      pythongh-85299: Add note warning about entry point guard for asyncio example (python#93457)
      pythongh-97527: IDLE - fix buggy macosx patch (python#98313)
      pythongh-98307: Add docstring and documentation for SysLogHandler.createSocket (pythonGH-98319)
      pythongh-94808: Cover `PyFunction_GetCode`, `PyFunction_GetGlobals`, `PyFunction_GetModule` (python#98158)
      pythonGH-94597: Deprecate child watcher getters and setters (python#98215)
      pythongh-98254: Include stdlib module names in error messages for NameErrors (python#98255)
      Improve speed. Reduce auxiliary memory to 16.6% of the main array. (pythonGH-98294)
      [doc] Update logging cookbook with an example of custom handling of levels. (pythonGH-98290)
      ...
    miss-islington added a commit that referenced this issue Oct 17, 2022
    * remove extra row
    
    * 📜🤖 Added by blurb_it.
    
    Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
    (cherry picked from commit 5c9302d)
    
    Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    docs Documentation in the Doc dir type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    3 participants