Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

replaced deprecated substring #395

Merged
merged 12 commits into from
Mar 25, 2020
Merged

Conversation

SumanSudhir
Copy link
Contributor

@SumanSudhir SumanSudhir commented Mar 14, 2020

Replaced substring(to:) here as it is showing warning: 'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator.

@SumanSudhir
Copy link
Contributor Author

#389 @texasmichelle I saw this issue after making PR. Sorry if I have duplicated your work

@texasmichelle
Copy link
Member

The issue was there so that someone could fix it :) Thank you for this submission @SumanSudhir !!

rows[rows.count - 1] = String(
rows[rows.count - 1].substring(to: rows[rows.count - 1].index(rows[rows.count - 1].endIndex, offsetBy: -2)))
// Removing the last '"\n'
rows[rows.count - 1] = String(rows[rows.count - 1].suffix(2))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This command does in fact remove the substring-related warning, but it removes everything except the last two characters. We're looking for a command that keeps everything except the trailing newline and quotation mark.

@@ -1,799 +1,1094 @@
{
"cells": [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This diff makes it hard to see what has changed, which I believe should only be a single cell. I suggest doing a text replace, then running separately to ensure it's correct. @sgugger do you have a better process for making notebook changes?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, just making the change in the cell is better to avoid large diffs. Otherwise, reviewNB is great to see the diff on notebooks.

Copy link
Member

@texasmichelle texasmichelle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change to TextUnsupervised.swift looks good, but the notebook diff is still hard to interpret. If you revert the changes to just the notebook file (e.g. copy from master) and apply the substring replacement in a text editor, that should do the trick.

@SumanSudhir

This comment has been minimized.

Copy link
Member

@texasmichelle texasmichelle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good - thank you for resolving this warning!

Copy link
Contributor

@dabrahams dabrahams left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for doing this!

Copy link
Contributor

@dabrahams dabrahams left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

I realize it's not part of this change, but I beg, fer the love a' Mike, in future when any of us embeds Swift in Python strings, we use raw triple-' strings

r'''
public func readCSV(in file: URL) -> [String] {
    let rawText = try! String(contentsOf: file, encoding: .utf8)
    var rows = rawText.components(separatedBy: "\"\n\"")
    …etc…
'''.splitlines(keepends=True)

@dabrahams dabrahams merged commit 23b09c0 into tensorflow:master Mar 25, 2020
@SumanSudhir SumanSudhir deleted the substring branch March 25, 2020 21:40
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants